From 44eaf236cfae6747ad4866f2f99da6bfea9189a4 Mon Sep 17 00:00:00 2001 From: "Harish.K" Date: Sun, 14 Jun 2020 06:01:06 +0530 Subject: [PATCH] * Fix Ctrl-Enter, Ctrl-Tab keycodes --- home/.config/alacritty/alacritty.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/home/.config/alacritty/alacritty.yml b/home/.config/alacritty/alacritty.yml index 05c5253..7a226d6 100644 --- a/home/.config/alacritty/alacritty.yml +++ b/home/.config/alacritty/alacritty.yml @@ -100,7 +100,7 @@ font: family: Source code pro # The `style` can be specified to pick a specific face. - #style: Regular + # style: Medium # Bold font face #bold: @@ -502,7 +502,12 @@ font: # at once. key_bindings: # (Windows, Linux, and BSD only) - - { key: 28, mods: Control, chars: "\e[13;5u" } + - { key: Return, mods: Shift, chars: "\e[13;2u" } + - { key: Return, mods: Control, chars: "\e[13;5u" } + - { key: Return, mods: Control|Shift, chars: "\e[13;6u" } + - { key: Tab, mods: Shift, chars: "\e[Z" } + - { key: Tab, mods: Control, chars: "\e[27;5;9~" } + - { key: Tab, mods: Control|Shift, chars: "\e[27;6;9~" } #- { key: V, mods: Control|Shift, action: Paste } #- { key: C, mods: Control|Shift, action: Copy } #- { key: Insert, mods: Shift, action: PasteSelection }