-
Notifications
You must be signed in to change notification settings - Fork 715
Bruno Heridet edited this page Nov 2, 2018
·
1 revision
To process input keys and display information to the terminal, Kakoune currently relies on ncurses.
Nevertheless, in the following cases Kakoune outputs raw ANSI escape codes (defined in ECMA-48) to stdout.
-
ESC ] 104 ; BEL
to reset the palette
-
ESC [ ? 1002 h
to enable mouse position report -
ESC [ ? 1004 h
to enable focus events report -
ESC [ ? 1002 l
to disable mouse position report -
ESC [ ? 1004 l
to disable focus events report
- Normal mode commands
- Avoid the escape key
- Implementing user mode (Leader key)
- Kakoune explain
- Kakoune TV