Merge pull request #989 from bvdwalt/alacritty-default-to-system-clipboard

Make shift+insert paste from clipboard in Alacritty
This commit is contained in:
Ryan Hughes
2025-10-08 00:16:43 -04:00
committed by GitHub

View File

@@ -16,5 +16,6 @@ decorations = "None"
[keyboard]
bindings = [
{ key = "F11", action = "ToggleFullscreen" }
{ key = "F11", action = "ToggleFullscreen" },
{ key = "Insert", mods = "Shift", action = "Paste" }
]