diff options
author | ZyX <kp-pav@yandex.ru> | 2015-10-17 17:25:53 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2015-10-23 14:54:10 +0300 |
commit | 1cdc3298cfb8389b2bc3203da16abc74abb0a0c0 (patch) | |
tree | c8a68fbcb3c79fe42eff2820f71e34c7dc2afd06 /runtime/doc/tips.txt | |
parent | a1b0f4073deb7f50e1b7137174bcb9914c97078f (diff) | |
download | rneovim-1cdc3298cfb8389b2bc3203da16abc74abb0a0c0.tar.gz rneovim-1cdc3298cfb8389b2bc3203da16abc74abb0a0c0.tar.bz2 rneovim-1cdc3298cfb8389b2bc3203da16abc74abb0a0c0.zip |
documentation: Update documentation
Note about ~/.local/share/nvim/site used in one usr_\* file: this one talks
about user-local installation of third-party plugins, and
~/.local/share/nvim/site is the proper place for them. Most other files talk
about user own configuration and this is ~/.config.
Diffstat (limited to 'runtime/doc/tips.txt')
-rw-r--r-- | runtime/doc/tips.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt index 9ed8f1f544..8032af7d0a 100644 --- a/runtime/doc/tips.txt +++ b/runtime/doc/tips.txt @@ -98,7 +98,7 @@ What you need: - An identifier database file called "ID" in the current directory. You can create it with the shell command "mkid file1 file2 ..". -Put this in your .vimrc: > +Put this in your |init.vim|: > map _u :call ID_search()<Bar>execute "/\\<" . g:word . "\\>"<CR> map _n :n<Bar>execute "/\\<" . g:word . "\\>"<CR> @@ -404,7 +404,7 @@ See section |23.4| of the user manual. If one has a particular extension that one uses for binary files (such as exe, bin, etc), you may find it helpful to automate the process with the following -bit of autocmds for your <.vimrc>. Change that "*.bin" to whatever +bit of autocmds for your |init.vim|. Change that "*.bin" to whatever comma-separated list of extension(s) you find yourself wanting to edit: > " vim -b : edit binary using xxd-format! |