I would like to be able to use CTRL and SUPER key modifiers together in a key binding. Since I'm on Mac OSX I use Command key for SUPER modifier.
I tried this:
(global-set-key (kbd "C-s-i") 'move-line-up)
(global-set-key (kbd "C-s-k") 'move-line-down)
but I get <C-s-268632073> is undefined
message in the mini buffer when I press C-s-i
combination.
Is there a way to use CTRL and SUPER key modifiers together in a key binding?