vim-patch:664f3cf3f21d

Runtime file updates.
664f3cf3f2
This commit is contained in:
Jan Edmund Lazo 2021-04-24 19:03:31 -04:00
parent 3e47e529b0
commit 527d108223
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
14 changed files with 1206 additions and 895 deletions

View File

@ -17,7 +17,8 @@ Using expressions is introduced in chapter 41 of the user manual |usr_41.txt|.
*E712* *E712*
There are six types of variables: There are six types of variables:
Number A 32 or 64 bit signed number. |expr-number| *Number* *Number* *Integer*
Number A 32 or 64 bit signed number. |expr-number|
Examples: -123 0x10 0177 0b1011 Examples: -123 0x10 0177 0b1011
Float A floating point number. |floating-point-format| *Float* Float A floating point number. |floating-point-format| *Float*

View File

@ -338,8 +338,8 @@ The defaults static maps are: >
imap <buffer> <C-C>T <C-\><C-O>:call sqlcomplete#Map('sqlType')<CR><C-X><C-O> imap <buffer> <C-C>T <C-\><C-O>:call sqlcomplete#Map('sqlType')<CR><C-X><C-O>
imap <buffer> <C-C>s <C-\><C-O>:call sqlcomplete#Map('sqlStatement')<CR><C-X><C-O> imap <buffer> <C-C>s <C-\><C-O>:call sqlcomplete#Map('sqlStatement')<CR><C-X><C-O>
The use of "<C-C>" can be user chosen by using the following in your The use of "<C-C>" can be user chosen by using the following in your |init.vim|
|init.vim| as it may not work properly on all platforms: > as it may not work properly on all platforms: >
let g:ftplugin_sql_omni_key = '<C-C>' let g:ftplugin_sql_omni_key = '<C-C>'
> >
The static maps (which are based on the syntax highlight groups) follow this The static maps (which are based on the syntax highlight groups) follow this

View File

@ -394,10 +394,11 @@ to set options automatically for one or more files:
*modeline* *vim:* *vi:* *ex:* *E520* *modeline* *vim:* *vi:* *ex:* *E520*
There are two forms of modelines. The first form: There are two forms of modelines. The first form:
[text]{white}{vi:|vim:|ex:}[white]{options} [text{white}]{vi:|vim:|ex:}[white]{options}
[text] any text or empty [text{white}] empty or any text followed by at least one blank
{white} at least one blank character (<Space> or <Tab>) character (<Space> or <Tab>); "ex:" always requires at
least one blank character
{vi:|vim:|ex:} the string "vi:", "vim:" or "ex:" {vi:|vim:|ex:} the string "vi:", "vim:" or "ex:"
[white] optional white space [white] optional white space
{options} a list of option settings, separated with white space {options} a list of option settings, separated with white space

View File

@ -311,7 +311,7 @@ processing a quickfix or location list command, it will be aborted.
*:cex* *:cexpr* *E777* *:cex* *:cexpr* *E777*
:cex[pr][!] {expr} Create a quickfix list using the result of {expr} and :cex[pr][!] {expr} Create a quickfix list using the result of {expr} and
jump to the first error. jump to the first error.
If {expr} is a String, then each new-line terminated If {expr} is a String, then each newline terminated
line in the String is processed using the global value line in the String is processed using the global value
of 'errorformat' and the result is added to the of 'errorformat' and the result is added to the
quickfix list. quickfix list.

View File

@ -2,6 +2,7 @@
Name=Neovim Name=Neovim
GenericName=Text Editor GenericName=Text Editor
GenericName[de]=Texteditor GenericName[de]=Texteditor
GenericName[fr]=Éditeur de texte
GenericName[ru]=Текстовый редактор GenericName[ru]=Текстовый редактор
GenericName[sr]=Текст Едитор GenericName[sr]=Текст Едитор
GenericName[tr]=Metin Düzenleyici GenericName[tr]=Metin Düzenleyici
@ -27,7 +28,7 @@ Comment[et]=Redigeeri tekstifaile
Comment[eu]=Editatu testu-fitxategiak Comment[eu]=Editatu testu-fitxategiak
Comment[fa]=ویرایش پروندههای متنی Comment[fa]=ویرایش پروندههای متنی
Comment[fi]=Muokkaa tekstitiedostoja Comment[fi]=Muokkaa tekstitiedostoja
Comment[fr]=Édite des fichiers texte Comment[fr]=Éditer des fichiers texte
Comment[ga]=Eagar comhad Téacs Comment[ga]=Eagar comhad Téacs
Comment[gu]= Comment[gu]=
Comment[he]=ערוך קבצי טקסט Comment[he]=ערוך קבצי טקסט
@ -78,6 +79,7 @@ Exec=nvim %F
Terminal=true Terminal=true
Type=Application Type=Application
Keywords=Text;editor; Keywords=Text;editor;
Keywords[fr]=Texte;éditeur;
Keywords[ru]=текст;текстовый редактор; Keywords[ru]=текст;текстовый редактор;
Keywords[sr]=Текст;едитор; Keywords[sr]=Текст;едитор;
Keywords[tr]=Metin;düzenleyici; Keywords[tr]=Metin;düzenleyici;

File diff suppressed because it is too large Load Diff