Skip to content

Commit

Permalink
Merge pull request #1748 from vim-jp/hh-update-syntax
Browse files Browse the repository at this point in the history
Update syntax.{txt,jax}
  • Loading branch information
h-east authored Oct 20, 2024
2 parents a963408 + 3371499 commit 44c52fa
Showing 2 changed files with 42 additions and 2 deletions.
22 changes: 21 additions & 1 deletion doc/syntax.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*syntax.txt* For Vim バージョン 9.1. Last change: 2024 Oct 06
*syntax.txt* For Vim バージョン 9.1. Last change: 2024 Oct 13


VIMリファレンスマニュアル by Bram Moolenaar
@@ -2157,6 +2157,20 @@ Lace (Language for Assembly of Classes in Eiffel)は大文字・小文字を無
:let lace_case_insensitive=1
LF (LFRC) *lf.vim* *ft-lf-syntax* *g:lf_shell_syntax*
*b:lf_shell_syntax*

lf ファイルマネージャー構成ファイル (lfrc) の場合、以下の変数を使用して異なる
'include' コマンド検索パターンを設定することにより、シェルコマンド構文のハイラ
イトをグローバルおよびバッファごとに変更できる: >
let g:lf_shell_syntax = "syntax/dosbatch.vim"
let b:lf_shell_syntax = "syntax/zsh.vim"
これらの変数はデフォルトでは設定されていない。

デフォルトの 'include' コマンド検索パターンは 'syntax/sh.vim' である。


LEX *lex.vim* *ft-lex-syntax*

"^%%$" セクションデリミタが、その後にどんなセクションが続くかの手がかりを与え
@@ -2449,6 +2463,12 @@ msql構文ハイライトには2つのオプションがある。
:let msql_minlines = 200
NEOMUTT *neomutt.vim* *ft-neomuttrc-syntax* *ft-neomuttlog-syntax*

デフォルトの NeoMutt ログの色を無効にするには: >
:let g:neolog_disable_default_colors = 1
N1QL *n1ql.vim* *ft-n1ql-syntax*

N1QL は、Couchbase Server データベースで JSON 文書を操作するための SQL ライク
22 changes: 21 additions & 1 deletion en/syntax.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*syntax.txt* For Vim version 9.1. Last change: 2024 Oct 06
*syntax.txt* For Vim version 9.1. Last change: 2024 Oct 13


VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2223,6 +2223,20 @@ define the vim variable 'lace_case_insensitive' in your startup file: >
:let lace_case_insensitive=1
LF (LFRC) *lf.vim* *ft-lf-syntax* *g:lf_shell_syntax*
*b:lf_shell_syntax*

For the lf file manager configuration files (lfrc) the shell commands
syntax highlighting can be changed globally and per buffer by setting
a different 'include' command search pattern using these variables:
let g:lf_shell_syntax = "syntax/dosbatch.vim"
let b:lf_shell_syntax = "syntax/zsh.vim"

These variables are unset by default.

The default 'include' command search pattern is 'syntax/sh.vim'.


LEX *lex.vim* *ft-lex-syntax*

Lex uses brute-force synchronizing as the "^%%$" section delimiter
@@ -2524,6 +2538,12 @@ set "msql_minlines" to the value you desire. Example: >
:let msql_minlines = 200
NEOMUTT *neomutt.vim* *ft-neomuttrc-syntax* *ft-neomuttlog-syntax*

To disable the default NeoMutt log colors >
:let g:neolog_disable_default_colors = 1
N1QL *n1ql.vim* *ft-n1ql-syntax*

N1QL is a SQL-like declarative language for manipulating JSON documents in

0 comments on commit 44c52fa

Please sign in to comment.