aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-24 13:58:29 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-09-04 21:18:23 +0800
commitceb09701f29dcabcf219f458fffbb64f5adced9b (patch)
tree48e315d1729c55a6ded2ab0b823d32ae55d45882 /runtime/doc
parent04bd700ac3bc2bdea0e0d8747de95dab2034aa11 (diff)
downloadrneovim-ceb09701f29dcabcf219f458fffbb64f5adced9b.tar.gz
rneovim-ceb09701f29dcabcf219f458fffbb64f5adced9b.tar.bz2
rneovim-ceb09701f29dcabcf219f458fffbb64f5adced9b.zip
feat(api): add "move" to nvim_input_mouse
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/api.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt
index 82978d0b3c..063e17ded9 100644
--- a/runtime/doc/api.txt
+++ b/runtime/doc/api.txt
@@ -1067,9 +1067,11 @@ nvim_input_mouse({button}, {action}, {modifier}, {grid}, {row}, {col})
|api-fast|
Parameters: ~
- {button} Mouse button: one of "left", "right", "middle", "wheel".
+ {button} Mouse button: one of "left", "right", "middle", "wheel",
+ "move".
{action} For ordinary buttons, one of "press", "drag", "release".
For the wheel, one of "up", "down", "left", "right".
+ Ignored for "move".
{modifier} String of modifiers each represented by a single char. The
same specifiers are used as for a key press, except that
the "-" separator is optional, so "C-A-", "c-a" and "CA"