diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-08-27 09:56:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 15:56:58 +0800 |
commit | 09c6ce8c4e4c6415cca9b834539ed0df461373f6 (patch) | |
tree | 95858a9c90478675a5bef5a2860d3ab73f585bc6 /runtime/doc/builtin.txt | |
parent | 523600ea6cc1edb7b4d116fdf70437a6b7f226d1 (diff) | |
download | rneovim-09c6ce8c4e4c6415cca9b834539ed0df461373f6.tar.gz rneovim-09c6ce8c4e4c6415cca9b834539ed0df461373f6.tar.bz2 rneovim-09c6ce8c4e4c6415cca9b834539ed0df461373f6.zip |
docs: fix typos (#19798)
Co-authored-by: adrian5 <adrian5@users.noreply.github.com>
Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
Diffstat (limited to 'runtime/doc/builtin.txt')
-rw-r--r-- | runtime/doc/builtin.txt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 8929804388..8cb9149529 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -1029,7 +1029,7 @@ chanclose({id} [, {stream}]) *chanclose()* are closed. If the channel is a pty, this will then close the pty master, sending SIGHUP to the job process. For a socket, there is only one stream, and {stream} should be - ommited. + omitted. chansend({id}, {data}) *chansend()* Send data to channel {id}. For a job, it writes it to the @@ -4973,7 +4973,7 @@ matchadd({group}, {pattern} [, {priority} [, {id} [, {dict}]]]) highlighted matches. The dict can have the following members: conceal Special character to show instead of the - match (only for |hl-Conceal| highlighed + match (only for |hl-Conceal| highlighted matches, see |:syn-cchar|) window Instead of the current window use the window with this number or window ID. @@ -7709,14 +7709,13 @@ stdpath({what}) *stdpath()* *E6100* config String User configuration directory. |init.vim| is stored here. config_dirs List Other configuration directories. - data String User data directory. The |shada-file| - is stored here. + data String User data directory. data_dirs List Other data directories. log String Logs directory (for use by plugins too). run String Run directory: temporary, local storage for sockets, named pipes, etc. state String Session state directory: storage for file - drafts, undo, shada, etc. + drafts, undo, |shada|, etc. Example: > :echo stdpath("config") |