We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0426d9 commit 6780ca1Copy full SHA for 6780ca1
linux/alacritty /alacritty.toml
@@ -1,6 +1,3 @@
1
-[env]
2
-TERM = "xterm-256color"
3
-
4
[window]
5
dimensions.columns = 120
6
dimensions.lines = 50
@@ -25,9 +22,14 @@ primary.foreground = "0xD4D4D4"
25
22
26
23
[keyboard]
27
24
bindings = [
28
- { key = "Left", mods = "Alt", chars = "\u001bB" },
29
- { key = "Right", mods = "Alt", chars = "\u001bF" },
30
- { key = "Left", mods = "Command", chars = "\u001bOH" },
31
- { key = "Right", mods = "Command", chars = "\u001bOF" },
32
- { key = "Back", mods = "Command", chars = "\u0015" },
+ ### copy and paste
+ { key = "\u314A", mods = "Command", action = "Copy" },
+ { key = "\u314D", mods = "Command", action = "Paste" },
+ ### move cursor
+ { key = "Left", mods = "Alt", chars = "\u001bB" },
+ { key = "Right", mods = "Alt", chars = "\u001bF" },
+ { key = "Left", mods = "Command", chars = "\u001bOH" },
+ { key = "Right", mods = "Command", chars = "\u001bOF" },
33
+ ### delete
34
+ { key = "Back", mods = "Command", chars = "\u0015" },
35
]
0 commit comments