diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-12-18 21:47:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 21:47:06 +0100 |
commit | 80f75d063d2fd2fabf0584a0167920af647f6e9e (patch) | |
tree | 6ee0350184b6e5c60a94e4df8c8c3c14316086e4 /runtime/lua/vim/_meta/api.lua | |
parent | 3a4aa3fc58f87a295a075fe457bc78805eef7c4d (diff) | |
parent | 428edcde7068ab44040e19b43343741e5ca59770 (diff) | |
download | rneovim-80f75d063d2fd2fabf0584a0167920af647f6e9e.tar.gz rneovim-80f75d063d2fd2fabf0584a0167920af647f6e9e.tar.bz2 rneovim-80f75d063d2fd2fabf0584a0167920af647f6e9e.zip |
Merge pull request #26279 from agraven/x1-x2-mouse-api
feat(api): add forward and back mouse buttons
Diffstat (limited to 'runtime/lua/vim/_meta/api.lua')
-rw-r--r-- | runtime/lua/vim/_meta/api.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/api.lua b/runtime/lua/vim/_meta/api.lua index c8afbd58dd..c8c3e1c3af 100644 --- a/runtime/lua/vim/_meta/api.lua +++ b/runtime/lua/vim/_meta/api.lua @@ -1375,7 +1375,7 @@ function vim.api.nvim_input(keys) end --- processed soon by the event loop. --- --- @param button string Mouse button: one of "left", "right", "middle", "wheel", ---- "move". +--- "move", "x1", "x2". --- @param action string For ordinary buttons, one of "press", "drag", "release". --- For the wheel, one of "up", "down", "left", "right". --- Ignored for "move". |