aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/intro.txt
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-06-17 07:28:16 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-07-25 09:47:28 +0800
commiteb77122823f35c2296cc332aec7f4380db6dafe7 (patch)
treeeb7baf2dee159b46833499d0a49eadf8919f7a42 /runtime/doc/intro.txt
parent46e3e1c7280a409462cceb520fe12259b5ba9937 (diff)
downloadrneovim-eb77122823f35c2296cc332aec7f4380db6dafe7.tar.gz
rneovim-eb77122823f35c2296cc332aec7f4380db6dafe7.tar.bz2
rneovim-eb77122823f35c2296cc332aec7f4380db6dafe7.zip
fix(input): do no reinterpret mouse keys with ALT modifiers
Remove check for MOD_MASK_META as it is for <T- which never appears in TUI. Make small changes to docs.
Diffstat (limited to 'runtime/doc/intro.txt')
-rw-r--r--runtime/doc/intro.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/intro.txt b/runtime/doc/intro.txt
index 51e823b75f..92ba7b4079 100644
--- a/runtime/doc/intro.txt
+++ b/runtime/doc/intro.txt
@@ -383,8 +383,8 @@ Note:
<k1>, ..., <k9> and <kPoint> will not work.
- Nvim supports mapping multibyte chars with modifiers such as `<M-รค>`. Which
combinations actually work depends on the the UI or host terminal.
-- When a key is pressed using a meta or alt modifier and no mapping exists
- for that keypress, Nvim behaves as though <Esc> was pressed before the key.
+- When a key is pressed using a meta or alt modifier and no mapping exists for
+ that keypress, Nvim may behave as though <Esc> was pressed before the key.
- It is possible to notate combined modifiers (e.g. <C-A-T> for CTRL-ALT-T),
but your terminal must encode the input for that to work. |tui-input|