diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-07 23:50:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 23:50:10 +0100 |
commit | bbf730aa3180c4522c34f4529130827874be25d1 (patch) | |
tree | fc1c6d82d3e340ebfc268b8274c24f1790c3849f /runtime/doc/syntax.txt | |
parent | ae569ea57b1df1b450803b6d23ab8c315dd72e72 (diff) | |
parent | 2ca59638ba04d11c397496d4f12f4d24e3461f0e (diff) | |
download | rneovim-bbf730aa3180c4522c34f4529130827874be25d1.tar.gz rneovim-bbf730aa3180c4522c34f4529130827874be25d1.tar.bz2 rneovim-bbf730aa3180c4522c34f4529130827874be25d1.zip |
Merge #7503 from justinmk/vim-patches
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 611274b8d8..f2225e6fda 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -39,10 +39,12 @@ fine. If it doesn't, try setting the VIM environment variable to the directory where the Vim stuff is located. For example, if your syntax files are in the "/usr/vim/vim50/syntax" directory, set $VIMRUNTIME to "/usr/vim/vim50". You must do this in the shell, before starting Vim. +This command also sources the |menu.vim| script when the GUI is running or +will start soon. See |'go-M'| about avoiding that. *:syn-on* *:syntax-on* -The ":syntax enable" command will keep your current color settings. This -allows using ":highlight" commands to set your preferred colors before or +The `:syntax enable` command will keep your current color settings. This +allows using `:highlight` commands to set your preferred colors before or after using this command. If you want Vim to overrule your settings with the defaults, use: > :syntax on @@ -788,12 +790,9 @@ See |mysyntaxfile-add| for installing script languages permanently. APACHE *apache.vim* *ft-apache-syntax* -The apache syntax file provides syntax highlighting depending on Apache HTTP -server version, by default for 1.3.x. Set "apache_version" to Apache version -(as a string) to get highlighting for another version. Example: > +The apache syntax file provides syntax highlighting for Apache HTTP server +version 2.2.3. - :let apache_version = "2.0" -< *asm.vim* *asmh8300.vim* *nasm.vim* *masm.vim* *asm68k* ASSEMBLY *ft-asm-syntax* *ft-asmh8300-syntax* *ft-nasm-syntax* |