I recently installed qtile which is written and configured in python and I'm used to have a keybinding which includes single quotes '
. This command is working :
Keys = [
Key(
["mod4"], "m",
lazy.screen.next_group()
),
]
I want something like :
Keys = [
Key(
["mod4"], "'", # <<- "m" got replaced by single quote
lazy.screen.next_group()
),
]
It does work perfectly with m
, but not if I change it to '
. Can I fix it or must I change the binding ?