Sublime Forum

Specific keybindings with ctrl+alt wont work

#1

These are the keybinds I wanted to add, sadly they dont work, however if I replace the last key with another one it works. Can someone please help me out, also sorry if this is a repost.

[
	{ "keys": ["alt+ctrl+ß"], "command": "insert", "args": {"characters": "\\" }},
	{ "keys": ["alt+ctrl+0"], "command": "insert", "args": {"characters": "}" }},
	{ "keys": ["alt+ctrl+9"], "command": "insert", "args": {"characters": "]" }},
	{ "keys": ["alt+ctrl+8"], "command": "insert", "args": {"characters": "[" }},
	{ "keys": ["alt+ctrl+7"], "command": "insert", "args": {"characters": "{" }},
	{ "keys": ["ctrl+alt++"], "command": "insert", "args": {"characters": "~" }},
]
0 Likes

#2

Which OS are you using? Which version of Sublime Text are you using?

0 Likes

#3

Sublime Text Version 3.2.2
And I am using Manjaro 20.0

0 Likes

#4

If you type sublime.log_input(True) into the Sublime console and subsequently press one of those key combinations, does it get logged to the console? If not, then another application or your desktop environment is handling those keys before they’re passed to Sublime Text.

0 Likes