diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-10-25 22:38:23 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-10-25 22:38:23 -0400 |
commit | 1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0 (patch) | |
tree | 7495d3f50b897e74fc4597d061d427a4e9b1ae36 /runtime/doc/insert.txt | |
parent | de4cb766ca381c09fd3f938136c1932ebf008f63 (diff) | |
parent | 42047acb4f07c689936b051864c6b4448b1b6aa1 (diff) | |
download | rneovim-1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0.tar.gz rneovim-1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0.tar.bz2 rneovim-1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0.zip |
Merge pull request #3470 from ZyX-I/pr-3198
XDG base directory specification support
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r-- | runtime/doc/insert.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index e4cec778bf..2572aa1e91 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1257,9 +1257,9 @@ A compiled .exe for MS-Windows can be found at: If you want to complete system functions you can do something like this. Use ctags to generate a tags file for all the system header files: > - % ctags -R -f ~/.vim/systags /usr/include /usr/local/include + % ctags -R -f ~/.config/nvim/systags /usr/include /usr/local/include In your vimrc file add this tags file to the 'tags' option: > - set tags+=~/.vim/systags + set tags+=~/.config/nvim/systags When using CTRL-X CTRL-O after a name without any "." or "->" it is completed from the tags file directly. This works for any identifier, also function @@ -1459,7 +1459,7 @@ minimal language-sensitive completion. To enable syntax code completion you can run: > setlocal omnifunc=syntaxcomplete#Complete -You can automate this by placing the following in your |.vimrc| (after any +You can automate this by placing the following in your |init.vim| (after any ":filetype" command): > if has("autocmd") && exists("+omnifunc") autocmd Filetype * |