mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:partial:d086b8f646a6 (#27623)
runtime(doc): fix inconsistent indent (vim/vim#14089)
d086b8f646
This commit is contained in:
parent
b72dc2d8ad
commit
c651a0f643
@ -459,7 +459,7 @@ g:changelog_new_date_format
|
|||||||
%% insert a single '%' character
|
%% insert a single '%' character
|
||||||
%d insert the date from above
|
%d insert the date from above
|
||||||
%u insert the user from above
|
%u insert the user from above
|
||||||
%p insert result of b:changelog_entry_prefix
|
%p insert result of b:changelog_entry_prefix
|
||||||
%c where to position cursor when done
|
%c where to position cursor when done
|
||||||
The default is "%d %u\n\n\t* %p%c\n\n", which produces
|
The default is "%d %u\n\n\t* %p%c\n\n", which produces
|
||||||
something like (| is where cursor will be, unless at
|
something like (| is where cursor will be, unless at
|
||||||
@ -473,7 +473,7 @@ g:changelog_new_entry_format
|
|||||||
The format used when creating a new entry.
|
The format used when creating a new entry.
|
||||||
The following table describes special tokens in the
|
The following table describes special tokens in the
|
||||||
string:
|
string:
|
||||||
%p insert result of b:changelog_entry_prefix
|
%p insert result of b:changelog_entry_prefix
|
||||||
%c where to position cursor when done
|
%c where to position cursor when done
|
||||||
The default is "\t*%c", which produces something
|
The default is "\t*%c", which produces something
|
||||||
similar to >
|
similar to >
|
||||||
|
@ -172,7 +172,7 @@ GNAT OBJECT ~
|
|||||||
*g:gnat.Make()*
|
*g:gnat.Make()*
|
||||||
g:gnat.Make()
|
g:gnat.Make()
|
||||||
Calls |g:gnat.Make_Command| and displays the result inside a
|
Calls |g:gnat.Make_Command| and displays the result inside a
|
||||||
|quickfix| window.
|
|quickfix| window.
|
||||||
|
|
||||||
*g:gnat.Pretty()*
|
*g:gnat.Pretty()*
|
||||||
g:gnat.Pretty()
|
g:gnat.Pretty()
|
||||||
|
@ -375,7 +375,7 @@ This command breaks down as: >
|
|||||||
'sqlKeyword' - Display the items for the sqlKeyword highlight
|
'sqlKeyword' - Display the items for the sqlKeyword highlight
|
||||||
group
|
group
|
||||||
'sqlKeyword\w*' - A second option available with Vim 7.4 which
|
'sqlKeyword\w*' - A second option available with Vim 7.4 which
|
||||||
uses a regular expression to determine which
|
uses a regular expression to determine which
|
||||||
syntax groups to use
|
syntax groups to use
|
||||||
)<CR> - Execute the :let command
|
)<CR> - Execute the :let command
|
||||||
<C-X><C-O> - Trigger the standard omni completion key stroke.
|
<C-X><C-O> - Trigger the standard omni completion key stroke.
|
||||||
|
@ -345,8 +345,8 @@ Other commands ~
|
|||||||
*:Asm* jump to the window with the disassembly, create it if there
|
*:Asm* jump to the window with the disassembly, create it if there
|
||||||
isn't one
|
isn't one
|
||||||
*:Var* jump to the window with the local and argument variables,
|
*:Var* jump to the window with the local and argument variables,
|
||||||
create it if there isn't one. This window updates whenever the
|
create it if there isn't one. This window updates whenever the
|
||||||
program is stopped
|
program is stopped
|
||||||
|
|
||||||
Events ~
|
Events ~
|
||||||
*termdebug-events*
|
*termdebug-events*
|
||||||
|
@ -303,14 +303,14 @@ created, thus they behave slightly differently:
|
|||||||
shown (but that might change in the future).
|
shown (but that might change in the future).
|
||||||
|
|
||||||
:se[t] {option}< Set the effective value of {option} to its global
|
:se[t] {option}< Set the effective value of {option} to its global
|
||||||
value.
|
value.
|
||||||
For string |global-local| options, the local value is
|
For string |global-local| options, the local value is
|
||||||
removed, so that the global value will be used.
|
removed, so that the global value will be used.
|
||||||
For all other options, the global value is copied to
|
For all other options, the global value is copied to
|
||||||
the local value.
|
the local value.
|
||||||
|
|
||||||
:setl[ocal] {option}< Set the effective value of {option} to its global
|
:setl[ocal] {option}< Set the effective value of {option} to its global
|
||||||
value.
|
value.
|
||||||
For number and boolean |global-local| options, the
|
For number and boolean |global-local| options, the
|
||||||
local value is removed, so that the global value will
|
local value is removed, so that the global value will
|
||||||
be used.
|
be used.
|
||||||
|
@ -639,7 +639,7 @@ additional prompting.
|
|||||||
work with your ftp client. Otherwise the script will
|
work with your ftp client. Otherwise the script will
|
||||||
prompt for user-id and password.
|
prompt for user-id and password.
|
||||||
|
|
||||||
(*3) for ftp, "machine" may be machine#port or machine:port
|
(*3) for ftp, "machine" may be machine#port or machine:port
|
||||||
if a different port is needed than the standard ftp port
|
if a different port is needed than the standard ftp port
|
||||||
|
|
||||||
(*4) for http:..., if wget is available it will be used. Otherwise,
|
(*4) for http:..., if wget is available it will be used. Otherwise,
|
||||||
@ -785,7 +785,7 @@ below, a {netfile} is a URL to a remote file.
|
|||||||
(related: |netrw-userpass|)
|
(related: |netrw-userpass|)
|
||||||
|
|
||||||
:NetrwSettings This command is described in |netrw-settings| -- used to
|
:NetrwSettings This command is described in |netrw-settings| -- used to
|
||||||
display netrw settings and change netrw behavior.
|
display netrw settings and change netrw behavior.
|
||||||
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
|
@ -368,12 +368,12 @@ processing a quickfix or location list command, it will be aborted.
|
|||||||
:cl[ist]! +{count} List the current and next {count} error lines. This
|
:cl[ist]! +{count} List the current and next {count} error lines. This
|
||||||
is useful to see unrecognized lines after the current
|
is useful to see unrecognized lines after the current
|
||||||
one. For example, if ":clist" shows:
|
one. For example, if ":clist" shows:
|
||||||
8384 testje.java:252: error: cannot find symbol ~
|
8384 testje.java:252: error: cannot find symbol ~
|
||||||
Then using ":cl! +3" shows the reason:
|
Then using ":cl! +3" shows the reason:
|
||||||
8384 testje.java:252: error: cannot find symbol ~
|
8384 testje.java:252: error: cannot find symbol ~
|
||||||
8385: ZexitCode = Fmainx(); ~
|
8385: ZexitCode = Fmainx(); ~
|
||||||
8386: ^ ~
|
8386: ^ ~
|
||||||
8387: symbol: method Fmainx() ~
|
8387: symbol: method Fmainx() ~
|
||||||
|
|
||||||
:lli[st] [from] [, [to]] *:lli* *:llist*
|
:lli[st] [from] [, [to]] *:lli* *:llist*
|
||||||
Same as ":clist", except the location list for the
|
Same as ":clist", except the location list for the
|
||||||
|
Loading…
Reference in New Issue
Block a user