Skip to content

Instantly share code, notes, and snippets.

@bliotti
Created February 27, 2024 17:17
Show Gist options
  • Save bliotti/cc9d2954ec56f56e9c2ab9ec7582b06b to your computer and use it in GitHub Desktop.
Save bliotti/cc9d2954ec56f56e9c2ab9ec7582b06b to your computer and use it in GitHub Desktop.
fix backspace
# 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