mirror of
https://github.com/vim/vim.git
synced 2025-08-24 19:45:50 -04:00
runtime(doc): Tweak documentation style
closes: #18078 Signed-off-by: Hirohito Higashi <h.east.727@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
f3055eac84
commit
5ca1ea83ad
@ -1,4 +1,4 @@
|
|||||||
*options.txt* For Vim version 9.1. Last change: 2025 Aug 20
|
*options.txt* For Vim version 9.1. Last change: 2025 Aug 21
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -922,8 +922,8 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
'autocompletedelay' 'acl' number (default 0)
|
'autocompletedelay' 'acl' number (default 0)
|
||||||
global
|
global
|
||||||
Delay in milliseconds before the autocomplete menu appears after
|
Delay in milliseconds before the autocomplete menu appears after
|
||||||
typing. If you prefer it not to open too quickly, set this value
|
typing. If you prefer it not to open too quickly, set this value
|
||||||
slightly above your typing speed. See |ins-autocompletion|.
|
slightly above your typing speed. See |ins-autocompletion|.
|
||||||
|
|
||||||
*'autoindent'* *'ai'* *'noautoindent'* *'noai'*
|
*'autoindent'* *'ai'* *'noautoindent'* *'noai'*
|
||||||
'autoindent' 'ai' boolean (default off)
|
'autoindent' 'ai' boolean (default off)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*pattern.txt* For Vim version 9.1. Last change: 2025 Aug 13
|
*pattern.txt* For Vim version 9.1. Last change: 2025 Aug 21
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -1505,11 +1505,11 @@ Fuzzy matching scores how well a string matches a pattern when the pattern
|
|||||||
characters appear in order but not necessarily contiguously.
|
characters appear in order but not necessarily contiguously.
|
||||||
|
|
||||||
Example: >
|
Example: >
|
||||||
Pattern: "vim"
|
Pattern: "vim"
|
||||||
Candidates: "vim" -> perfect
|
Candidates: "vim" -> perfect
|
||||||
"vimeo" -> good (v i m)
|
"vimeo" -> good (v i m)
|
||||||
"voice mail" -> weaker (v _ i _ _ _ m)
|
"voice mail" -> weaker (v _ i _ _ _ m)
|
||||||
"vintage" -> no match (no "m")
|
"vintage" -> no match (no "m")
|
||||||
<
|
<
|
||||||
If the search string has multiple words, each word is matched separately and
|
If the search string has multiple words, each word is matched separately and
|
||||||
may appear in any order in the candidate. For example "get pat" matches
|
may appear in any order in the candidate. For example "get pat" matches
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
*remote.txt* For Vim version 9.1. Last change: 2025 Aug 18
|
*remote.txt* For Vim version 9.1. Last change: 2025 Aug 21
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -77,10 +77,10 @@ The following command line arguments are available:
|
|||||||
--serverlist Output a list of server names.
|
--serverlist Output a list of server names.
|
||||||
*--clientserver*
|
*--clientserver*
|
||||||
--clientserver {method} Use the specified method {method} as the
|
--clientserver {method} Use the specified method {method} as the
|
||||||
backend for clientserver functionality. Can
|
backend for clientserver functionality. Can
|
||||||
either be "socket" or "x11".
|
either be "socket" or "x11".
|
||||||
{only available when Vim is compiled with both
|
{only available when compiled with both |+X11|
|
||||||
|+X11| and |+socketserver| features}
|
and |+socketserver| features}
|
||||||
|
|
||||||
|
|
||||||
Examples ~
|
Examples ~
|
||||||
@ -225,9 +225,9 @@ The communication between client and server is done using Unix domain sockets.
|
|||||||
These sockets are either placed in these directories in the following order of
|
These sockets are either placed in these directories in the following order of
|
||||||
availability:
|
availability:
|
||||||
1. "$XDG_RUTIME_DIR/vim" if $XDG_RUNTIME_DIR is set in the environment.
|
1. "$XDG_RUTIME_DIR/vim" if $XDG_RUNTIME_DIR is set in the environment.
|
||||||
2. "$TMPDIR/vim-[uid]", where "[uid]" is the uid of the user. This
|
2. "$TMPDIR/vim-[uid]", where "[uid]" is the uid of the user. This
|
||||||
directory will have the access permissions set to 700 so only the user
|
directory will have the access permissions set to 700 so only the user
|
||||||
can read or write from/to it. If $TMPDIR is not set, "/tmp" is used.
|
can read or write from/to it. If $TMPDIR is not set, "/tmp" is used.
|
||||||
|
|
||||||
*socketserver-name*
|
*socketserver-name*
|
||||||
When specifying the server id/name, it can be taken as a generic name or an
|
When specifying the server id/name, it can be taken as a generic name or an
|
||||||
@ -238,9 +238,9 @@ placed in the above common directories. Note that a server id/name can only
|
|||||||
contain slashes "/" if it is taken as a path, so names such as "abc/dir" will
|
contain slashes "/" if it is taken as a path, so names such as "abc/dir" will
|
||||||
be invalid.
|
be invalid.
|
||||||
|
|
||||||
Socket server functionality is available in both GTK GUI and terminal versions of
|
Socket server functionality is available in both GTK GUI and terminal versions
|
||||||
Vim. Unless Vim is compiled with |+autoservername| feature, the socket server
|
of Vim. Unless Vim is compiled with |+autoservername| feature, the socket
|
||||||
will have to started explicitly, just like X11, even in the GUI.
|
server will have to started explicitly, just like X11, even in the GUI.
|
||||||
|
|
||||||
If Vim crashes or does not exit cleanly, the socket server will not remove the
|
If Vim crashes or does not exit cleanly, the socket server will not remove the
|
||||||
socket file and it will be left around. This is generally not a problem,
|
socket file and it will be left around. This is generally not a problem,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user