aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/diff.txt
diff options
context:
space:
mode:
authorFelipe Morales <hel.sheep@gmail.com>2015-06-29 18:00:16 -0300
committerFelipe Morales <hel.sheep@gmail.com>2015-06-29 20:01:56 -0300
commitb40f95d7230b5f1e494f0e274f18feb2cf5fb7da (patch)
tree4048850cafc884cc711da5950e1c7a68daf7fbe5 /runtime/doc/diff.txt
parent27f0e74542d1dd078caff57e423b33f6ca219856 (diff)
downloadrneovim-b40f95d7230b5f1e494f0e274f18feb2cf5fb7da.tar.gz
rneovim-b40f95d7230b5f1e494f0e274f18feb2cf5fb7da.tar.bz2
rneovim-b40f95d7230b5f1e494f0e274f18feb2cf5fb7da.zip
Update vimrc_example file
Because of recent work on defaults (see https://github.com/neovim/neovim/issues/2676)
Diffstat (limited to 'runtime/doc/diff.txt')
-rw-r--r--runtime/doc/diff.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/diff.txt b/runtime/doc/diff.txt
index 909aedb221..250275d80a 100644
--- a/runtime/doc/diff.txt
+++ b/runtime/doc/diff.txt
@@ -163,7 +163,7 @@ in diff mode in one window and "normal" in another window. It is also
possible to view the changes you have made to a buffer since the file was
loaded. Since Vim doesn't allow having two buffers for the same file, you
need another buffer. This command is useful: >
- command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
+ command DiffOrig vert new | set buftype=nofile | read ++edit # | 0d_
\ | diffthis | wincmd p | diffthis
(this is in |vimrc_example.vim|). Use ":DiffOrig" to see the differences
between the current buffer and the file it was loaded from.