I can’t type the “~” in my ST3 and it seems as if the default sublime-keymap is the culprit, see image
How can I edit that keymap?
I can’t type the “~” in my ST3 and it seems as if the default sublime-keymap is the culprit, see image
==
ctrl++) is related with AltGr++?~
.The culprit is more likely one of the plugins, you’ve installed.
To find it, you can
sublime.log_commands(True)
.If the console prints out a command like
command: indentblankline {"forward": true}
than you need to find the plugin the command belongs to.
The output above is from KeyboardSelection package, which I found causing this issue after a short triage. I quickly removed it due to a couple more issues.
Hi Deathaxe,
Here is the output on my console:
sublime.log_commands(True)
command: pane_pane_resize {“dimension”: “width”, “resize”: “equal”}
this “pane_pane_resize” thing appears when I’m trying to type the Tilde.
Update: Alright, found and removed the PanePane package and deleted the bindings in
"Default (Windows).sublime-keymap", which solves the problem. thanks!
Finding the correct key binding on a none-english keyboard is indeed weird sometimes.