Browse Source

* Fix Ctrl-Enter, Ctrl-Tab keycodes

pull/3/head
Harish.K 5 years ago
parent
commit
44eaf236cf
  1. 9
      home/.config/alacritty/alacritty.yml

9
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 }

Loading…
Cancel
Save