diff options
author | Daniel Hahler <git@thequod.de> | 2019-08-25 20:53:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-25 20:53:17 +0200 |
commit | bec2336231f434948fcd17b35b67584234785996 (patch) | |
tree | c652210623667462a63f8c0432e01ac003a1a72d /runtime | |
parent | c8fc285db60decb020c180622613d3880cbefbfe (diff) | |
download | rneovim-bec2336231f434948fcd17b35b67584234785996.tar.gz rneovim-bec2336231f434948fcd17b35b67584234785996.tar.bz2 rneovim-bec2336231f434948fcd17b35b67584234785996.zip |
vim-patch:8.1.1913: not easy to compute the space on the command line (#10845)
Problem: Not easy to compute the space on the command line.
Solution: Add v:echospace. (Daniel Hahler, closes vim/vim#4732)
https://github.com/vim/vim/commit/37f4cbd46f5a6f2dd3a48d5fa4324dce37e4bd6c
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 9bf964853a..209f1df4af 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1529,6 +1529,13 @@ v:dying Normally zero. When a deadly signal is caught it's set to *v:exiting* *exiting-variable* v:exiting Exit code, or |v:null| if not exiting. |VimLeave| + *v:echospace* *echospace-variable* +v:echospace Number of screen cells that can be used for an `:echo` message + in the last screen line before causing the |hit-enter-prompt|. + Depends on 'showcmd', 'ruler' and 'columns'. You need to + check 'cmdheight' for whether there are full-width lines + available above the last line. + *v:errmsg* *errmsg-variable* v:errmsg Last given error message. Modifiable (can be set). |