diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-20 19:41:45 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-27 21:19:10 +0200 |
commit | 0221a9220a2ec0691a7139c8362aba80d1f3b8ee (patch) | |
tree | d0bcc1d5656776bc5a1974495d7e1a5e1016e382 /runtime | |
parent | d303790ee751916a00a45ee91ff1cf3ab82928c8 (diff) | |
download | rneovim-0221a9220a2ec0691a7139c8362aba80d1f3b8ee.tar.gz rneovim-0221a9220a2ec0691a7139c8362aba80d1f3b8ee.tar.bz2 rneovim-0221a9220a2ec0691a7139c8362aba80d1f3b8ee.zip |
paste: edge-case: handle EOL at end-of-buffer
This is "readfile()-style", see also ":help channel-lines".
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 2ec72f7717..897b5df072 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4214,17 +4214,6 @@ getchar([expr]) *getchar()* : endwhile :endfunction < - You may also receive synthetic characters, such as - |<LeftMouse>|. Often you will want to ignore this and get - another character: > - :function GetKey() - : let c = getchar() - : while c == "\<LeftMouse>" - : let c = getchar() - : endwhile - : return c - :endfunction - getcharmod() *getcharmod()* The result is a Number which is the state of the modifiers for the last obtained character with getchar() or in another way. |