sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 4d4b94a0f8c0dab44dded51e8164e56536cadfc8
parent 20b4cbf3ba23e39e3761e516e6f4720888d63f4f
Author: Jan Christoph Ebersbach <jceb@e-jc.de>
Date:   Sun,  4 Jun 2017 22:17:48 +0200

[st] Fix code markup

Diffstat:
Mst.suckless.org/patches/fix_keyboard_input.md | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/st.suckless.org/patches/fix_keyboard_input.md b/st.suckless.org/patches/fix_keyboard_input.md @@ -20,18 +20,23 @@ Notes come accross. - If you use `<C-[>` for `<Esc>`, I suggest that you remove the following line from this patch to reenable the behavior: + ``` { XK_bracketleft, ControlMask, "\033[91;5u", 0, 0, 0}, ``` + - If you use `<C-6>` for changing to the alternative file, I suggest that you remove the following line from this patch to reenable the behavior: + ``` { XK_6, ControlMask, "\033[54;5u", 0, 0, 0}, ``` + - I'm not yet sure how to bind the new mappings to actions in viom. It works for some keys while others appear to be not working at all. The first mappings work for me with the patch while from the latter only `<S-Tab>` works: + ``` nmap <C-enter> :echo "<C-enter>"<CR> nmap <C-S-enter> :echo "<C-S-enter>"<CR> @@ -45,8 +50,10 @@ nmap <C-S-Tab> :echo "<C-S-Tab>"<CR> nmap <S-Tab> :echo "<S-Tab>"<CR> nmap <M-Tab> :echo "<M-Tab>"<CR> ``` + - I tried to create mappings in vim the following way but it didn't work either: + ``` nmap <Esc>[9;5u :echo "<C-Tab>"<CR> ```