mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
parent
3e47e529b0
commit
527d108223
@ -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*
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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.
|
||||||
|
@ -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;
|
||||||
|
1893
src/nvim/po/fr.po
1893
src/nvim/po/fr.po
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user