diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-20 13:01:11 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-20 13:13:39 +0200 |
commit | d55fd9588f621719e3e8c66f69290a00e1fadc1b (patch) | |
tree | 939c95a47f0e5bcd0bbd1be678b20a6a942cab88 | |
parent | 17052946c744abd53d8f3349f453964ffa818bea (diff) | |
download | rneovim-d55fd9588f621719e3e8c66f69290a00e1fadc1b.tar.gz rneovim-d55fd9588f621719e3e8c66f69290a00e1fadc1b.tar.bz2 rneovim-d55fd9588f621719e3e8c66f69290a00e1fadc1b.zip |
doc: Recommend `:silent!` for :loadview.
ex_loadview() was changed in 9b1c9393709a to check the file open result.
If user doesn't care about failure to open, using :silent! instead of
:silent is a reasonable, conventional approach.
Closes #3196
-rw-r--r-- | runtime/doc/starting.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 2d1dd22222..14e8c5d76f 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -922,7 +922,7 @@ You might want to clean up your 'viewdir' directory now and then. To automatically save and restore views for *.c files: > au BufWinLeave *.c mkview - au BufWinEnter *.c silent loadview + au BufWinEnter *.c silent! loadview ============================================================================== 8. The ShaDa file *shada* *shada-file* |