diff options
author | Michel Boaventura <michel.boaventura@gmail.com> | 2017-03-02 18:13:59 -0300 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-04-03 20:54:04 -0700 |
commit | 4dcd7c4c0de86ee957b26a5fe1874404033f298b (patch) | |
tree | 93976b3801d1549bd26587358df7d3261a747ab9 /alacritty.yml | |
parent | 5b079f6d437c567a1533a719194f6e579a7eedae (diff) | |
download | alacritty-4dcd7c4c0de86ee957b26a5fe1874404033f298b.tar.gz alacritty-4dcd7c4c0de86ee957b26a5fe1874404033f298b.zip |
Enable Shift + Insert to paste
Shift + Insert is a default bind to paste selection.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index b4ae3fda..7e6e4b36 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -167,6 +167,7 @@ key_bindings: - { key: C, mods: Control|Shift, action: Copy } - { key: Q, mods: Command, action: Quit } - { key: W, mods: Command, action: Quit } + - { key: Insert, mods: Shift, action: PasteSelection } - { key: Home, chars: "\x1bOH", mode: AppCursor } - { key: Home, chars: "\x1b[1~", mode: ~AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor } |