mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
doc: Remove {Nvim} tag
The purpose of the {Nvim} hint was not well-defined, and its usage inconsistent. It's also unnecessary. Nvim-Vim differences are centralized at: :help vim-differences Removed things are centralized at: :help deprecated Developer guidelines for documentation are listed at: :help dev-doc
This commit is contained in:
parent
4ba8266ab1
commit
e834660b2b
@ -2779,7 +2779,7 @@ changenr() *changenr()*
|
||||
redo it is the number of the redone change. After undo it is
|
||||
one less than the number of the undone change.
|
||||
|
||||
chanclose({id}[, {stream}]) {Nvim} *chanclose()*
|
||||
chanclose({id}[, {stream}]) *chanclose()*
|
||||
Close a channel or a specific stream associated with it.
|
||||
For a job, {stream} can be one of "stdin", "stdout",
|
||||
"stderr" or "rpc" (closes stdin/stdout for a job started
|
||||
@ -2789,7 +2789,7 @@ chanclose({id}[, {stream}]) {Nvim} *chanclose()*
|
||||
For a socket, there is only one stream, and {stream} should be
|
||||
ommited.
|
||||
|
||||
chansend({id}, {data}) {Nvim} *chansend()*
|
||||
chansend({id}, {data}) *chansend()*
|
||||
Send data to channel {id}. For a job, it writes it to the
|
||||
stdin of the process. For the stdio channel |channel-stdio|,
|
||||
it writes to Nvim's stdout. Returns the number of bytes
|
||||
@ -5725,7 +5725,7 @@ mkdir({name} [, {path} [, {prot}]])
|
||||
the new directory. The default is 0755 (rwxr-xr-x: r/w for
|
||||
the user readable for others). Use 0700 to make it unreadable
|
||||
for others.
|
||||
{Nvim}
|
||||
|
||||
{prot} is applied for all parts of {name}. Thus if you create
|
||||
/tmp/foo/bar then /tmp/foo will be created with 0700. Example: >
|
||||
:call mkdir($HOME . "/tmp/foo/bar", "p", 0700)
|
||||
@ -5768,7 +5768,7 @@ mode([expr]) Return a string that indicates the current mode.
|
||||
"c" or "n".
|
||||
Also see |visualmode()|.
|
||||
|
||||
msgpackdump({list}) {Nvim} *msgpackdump()*
|
||||
msgpackdump({list}) *msgpackdump()*
|
||||
Convert a list of VimL objects to msgpack. Returned value is
|
||||
|readfile()|-style list. Example: >
|
||||
call writefile(msgpackdump([{}]), 'fname.mpack', 'b')
|
||||
@ -5783,7 +5783,7 @@ msgpackdump({list}) {Nvim} *msgpackdump()*
|
||||
4. Other strings are always dumped as BIN strings.
|
||||
5. Points 3. and 4. do not apply to |msgpack-special-dict|s.
|
||||
|
||||
msgpackparse({list}) {Nvim} *msgpackparse()*
|
||||
msgpackparse({list}) *msgpackparse()*
|
||||
Convert a |readfile()|-style list to a list of VimL objects.
|
||||
Example: >
|
||||
let fname = expand('~/.config/nvim/shada/main.shada')
|
||||
@ -6401,25 +6401,25 @@ round({expr}) *round()*
|
||||
echo round(-4.5)
|
||||
< -5.0
|
||||
|
||||
rpcnotify({channel}, {event}[, {args}...]) {Nvim} *rpcnotify()*
|
||||
rpcnotify({channel}, {event}[, {args}...]) *rpcnotify()*
|
||||
Sends {event} to {channel} via |RPC| and returns immediately.
|
||||
If {channel} is 0, the event is broadcast to all channels.
|
||||
Example: >
|
||||
:au VimLeave call rpcnotify(0, "leaving")
|
||||
|
||||
rpcrequest({channel}, {method}[, {args}...]) {Nvim} *rpcrequest()*
|
||||
rpcrequest({channel}, {method}[, {args}...]) *rpcrequest()*
|
||||
Sends a request to {channel} to invoke {method} via
|
||||
|RPC| and blocks until a response is received.
|
||||
Example: >
|
||||
:let result = rpcrequest(rpc_chan, "func", 1, 2, 3)
|
||||
|
||||
rpcstart({prog}[, {argv}]) {Nvim} *rpcstart()*
|
||||
rpcstart({prog}[, {argv}]) *rpcstart()*
|
||||
Deprecated. Replace >
|
||||
:let id = rpcstart('prog', ['arg1', 'arg2'])
|
||||
< with >
|
||||
:let id = jobstart(['prog', 'arg1', 'arg2'], {'rpc': v:true})
|
||||
|
||||
rpcstop({channel}) {Nvim} *rpcstop()*
|
||||
rpcstop({channel}) *rpcstop()*
|
||||
Deprecated. Instead use |jobstop()| to stop any job, and
|
||||
chanclose(id, "rpc") to close RPC communication without
|
||||
stopping the job. Use chanclose(id) to close any socket.
|
||||
@ -7886,7 +7886,7 @@ tempname() *tempname()* *temp-file-name*
|
||||
For MS-Windows forward slashes are used when the 'shellslash'
|
||||
option is set or when 'shellcmdflag' starts with '-'.
|
||||
|
||||
termopen({cmd}[, {opts}]) {Nvim} *termopen()*
|
||||
termopen({cmd}[, {opts}]) *termopen()*
|
||||
Spawns {cmd} in a new pseudo-terminal session connected
|
||||
to the current buffer. {cmd} is the same as the one passed to
|
||||
|jobstart()|. This function fails if the current buffer is
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
The Python Interface to Vim *if_pyth* *python* *Python*
|
||||
|
||||
See |provider-python| for more information. {Nvim}
|
||||
See |provider-python| for more information.
|
||||
|
||||
Type |gO| to see the table of contents.
|
||||
|
||||
|
@ -1429,7 +1429,7 @@ automatically switch to HTML/CSS/JavaScript completion. Note: contrary to
|
||||
original HTML files completion of tags (and only tags) isn't context aware.
|
||||
|
||||
|
||||
RUBY *ft-ruby-omni* {Nvim}
|
||||
RUBY *ft-ruby-omni*
|
||||
|
||||
NOTE: |compl-omni| for Ruby code requires |provider-ruby| to be installed.
|
||||
|
||||
|
@ -459,7 +459,7 @@ For example, to use a modeline only for Vim 7.0:
|
||||
To use a modeline for Vim after version 7.2:
|
||||
/* vim>702: set cole=2: */ ~
|
||||
There can be no blanks between "vim" and the ":".
|
||||
The modeline is ignored if {vers} does not fit in an integer. {Nvim}
|
||||
The modeline is ignored if {vers} does not fit in an integer.
|
||||
|
||||
|
||||
The number of lines that are checked can be set with the 'modelines' option.
|
||||
@ -908,13 +908,13 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
the newly created file). Also see 'backupcopy' and |crontab|.
|
||||
|
||||
*'balloondelay'* *'bdlay'*
|
||||
'balloondelay' 'bdlay' Removed. {Nvim}
|
||||
'balloondelay' 'bdlay' Removed.
|
||||
|
||||
*'ballooneval'* *'beval'* *'noballooneval'* *'nobeval'*
|
||||
'ballooneval' 'beval' Removed. {Nvim}
|
||||
'ballooneval' 'beval' Removed.
|
||||
|
||||
*'balloonexpr'* *'bexpr'*
|
||||
'balloonexpr' 'bexpr' Removed. {Nvim}
|
||||
'balloonexpr' 'bexpr' Removed.
|
||||
|
||||
*'belloff'* *'bo'*
|
||||
'belloff' 'bo' string (default "all")
|
||||
@ -3475,7 +3475,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
help. (Note that previously setting the global option to the empty
|
||||
value did this, which is now deprecated.)
|
||||
When the first character is ":", the command is invoked as a Vim
|
||||
command prefixed with [count]. {Nvim}
|
||||
command prefixed with [count].
|
||||
When "man" or "man -s" is used, Vim will automatically translate
|
||||
a [count] for the "K" command to a section number.
|
||||
See |option-backslash| about including spaces and backslashes.
|
||||
@ -3795,7 +3795,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
set a time. This is to be compatible with Nvi.
|
||||
|
||||
*'maxcombine'* *'mco'*
|
||||
'maxcombine' 'mco' Removed. |vim-differences| {Nvim}
|
||||
'maxcombine' 'mco' Removed. |vim-differences|
|
||||
Nvim always displays up to 6 combining characters. You can still edit
|
||||
text with more than 6 combining characters, you just can't see them.
|
||||
Use |g8| or |ga|. See |mbyte-combining|.
|
||||
@ -6219,7 +6219,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
to be garbled (e.g., when it contains a CR or NL character).
|
||||
|
||||
*'ttyfast'* *'tf'* *'nottyfast'* *'notf'*
|
||||
'ttyfast' 'tf' Removed. |vim-differences| {Nvim}
|
||||
'ttyfast' 'tf' Removed. |vim-differences|
|
||||
|
||||
*'undodir'* *'udir'* *E5003*
|
||||
'undodir' 'udir' string (default "$XDG_DATA_HOME/nvim/undo")
|
||||
|
@ -1025,7 +1025,7 @@ Use the "r" flag in 'shada' to specify for which files no marks should be
|
||||
remembered.
|
||||
|
||||
MERGING *shada-merging*
|
||||
{Nvim}
|
||||
|
||||
When writing ShaDa files with |:wshada| without bang or at regular exit
|
||||
information in the existing ShaDa file is merged with information from current
|
||||
Neovim instance. For this purpose ShaDa files store timestamps associated
|
||||
@ -1055,7 +1055,7 @@ with ShaDa entries. Specifically the following is being done:
|
||||
Neovim instance which was last writing the file. |shada-%|
|
||||
|
||||
COMPATIBILITY *shada-compatibility*
|
||||
{Nvim}
|
||||
|
||||
ShaDa files are forward and backward compatible. This means that
|
||||
|
||||
1. Entries which have unknown type (i.e. that hold unidentified data) are
|
||||
|
@ -4907,12 +4907,12 @@ DiffChange diff mode: Changed line |diff.txt|
|
||||
DiffDelete diff mode: Deleted line |diff.txt|
|
||||
*hl-DiffText*
|
||||
DiffText diff mode: Changed text within a changed line |diff.txt|
|
||||
{Nvim} *hl-EndOfBuffer*
|
||||
*hl-EndOfBuffer*
|
||||
EndOfBuffer filler lines (~) after the end of the buffer.
|
||||
By default, this is highlighted like |hl-NonText|.
|
||||
{Nvim} *hl-TermCursor*
|
||||
*hl-TermCursor*
|
||||
TermCursor cursor in a focused terminal
|
||||
{Nvim} *hl-TermCursorNC*
|
||||
*hl-TermCursorNC*
|
||||
TermCursorNC cursor in an unfocused terminal
|
||||
*hl-ErrorMsg*
|
||||
ErrorMsg error messages on the command line
|
||||
|
@ -215,7 +215,7 @@ g8 Print the hex values of the bytes used in the
|
||||
":normal" command without a range.
|
||||
|
||||
*:sh* *:shell* *E371* *E360*
|
||||
:sh[ell] Removed. |vim-differences| {Nvim}
|
||||
:sh[ell] Removed. |vim-differences|
|
||||
|
||||
*:terminal* *:te*
|
||||
:te[rminal][!] [{cmd}] Run {cmd} in a non-interactive 'shell' in a new
|
||||
|
Loading…
Reference in New Issue
Block a user