diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2018-06-19 08:50:15 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2018-07-23 08:47:51 +0900 |
commit | 03bd5a4b91f4b555be9fc44b7fab6a64923667c8 (patch) | |
tree | 45a86fdc35738ef86a642e5941400650f3b38565 /runtime | |
parent | 13d29cb9ed0d6fba734dc5a96ed543326ee14b3f (diff) | |
download | rneovim-03bd5a4b91f4b555be9fc44b7fab6a64923667c8.tar.gz rneovim-03bd5a4b91f4b555be9fc44b7fab6a64923667c8.tar.bz2 rneovim-03bd5a4b91f4b555be9fc44b7fab6a64923667c8.zip |
Make "v:errmsg", "v:shell_error" and "v:this_session" distinct
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 5 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index c460e65c64..a306c77829 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1508,7 +1508,6 @@ v:errmsg Last given error message. It's allowed to set this variable. :silent! next :if v:errmsg != "" : ... handle error -< "errmsg" also works, for backwards compatibility. *v:errors* *errors-variable* v:errors Errors found by assert functions, such as |assert_true()|. @@ -1813,8 +1812,7 @@ v:shell_error Result of the last shell command. When non-zero, the last :if v:shell_error : echo 'could not rename "foo" to "bar"!' :endif -< "shell_error" also works, for backwards compatibility. - +< *v:statusmsg* *statusmsg-variable* v:statusmsg Last given status message. It's allowed to set this variable. @@ -1888,7 +1886,6 @@ v:testing Must be set before using `test_garbagecollect_now()`. v:this_session Full filename of the last loaded or saved session file. See |:mksession|. It is allowed to set this variable. When no session file has been saved, this variable is empty. - "this_session" also works, for backwards compatibility. *v:throwpoint* *throwpoint-variable* v:throwpoint The point where the exception most recently caught and not diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 8bda114639..ef0b54fa33 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -352,6 +352,9 @@ TUI: VimL (Vim script) compatibility: `count` does not alias to |v:count| + `errmsg` does not alias to |v:errmsg| + `shell_error` does not alias to |v:shell_error| + `this_session` does not alias to |v:this_session| ============================================================================== 5. Missing legacy features *nvim-features-missing* |