On Sun, Jan 13, 2019 at 08:32:31PM +0200, Alex Yegupov wrote: > 2) 'control+tab' keypress seems not wokring (at least emacs -nw > consider it like just 'Tab') > Is there a way to make this keypress work?
You need to modify the "key" array in config.h. This is what I use for Ctrl+(Shift)+Tab: // Ctrl+Tab { XK_Tab, ControlMask, "\033[27;5;9~", 0, 0}, // Ctrl+Shft+Tab { XK_ISO_Left_Tab, ShiftControl, "\033[27;6;9~", 0, 0}, Eric