diff options
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 5d30ac15b3..2ec72f7717 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4215,11 +4215,11 @@ getchar([expr]) *getchar()* :endfunction < You may also receive synthetic characters, such as - |<CursorHold>|. Often you will want to ignore this and get + |<LeftMouse>|. Often you will want to ignore this and get another character: > :function GetKey() : let c = getchar() - : while c == "\<CursorHold>" + : while c == "\<LeftMouse>" : let c = getchar() : endwhile : return c |