Created
February 27, 2024 17:17
-
-
Save bliotti/cc9d2954ec56f56e9c2ab9ec7582b06b to your computer and use it in GitHub Desktop.
fix backspace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fix either in bash | |
# ~/.bashrc | |
bind '"\C-H":backward-kill-word' | |
# or in wt.exe (Windows Terminal) | |
# // %LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json | |
{ | |
"actions": [ | |
{ | |
"keys": "ctrl+backspace", | |
"command": { "action": "sendInput", "input": "\u0017" } | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment