aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/tips.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-10-25 22:38:23 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-10-25 22:38:23 -0400
commit1ca5646bb52ec5c23b28f45bb7bc5d25cffad9b0 (patch)
tree7495d3f50b897e74fc4597d061d427a4e9b1ae36 /runtime/doc/tips.txt
parentde4cb766ca381c09fd3f938136c1932ebf008f63 (diff)
parent42047acb4f07c689936b051864c6b4448b1b6aa1 (diff)
downloadrneovim-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/tips.txt')
-rw-r--r--runtime/doc/tips.txt4
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!