1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 13:17:46 +02:00

Add back-tab support for toxic.

This commit is contained in:
clpr 2013-08-01 18:48:50 +01:00
parent 484575afdb
commit f96602d45c

3
main.c
View File

@ -305,6 +305,9 @@ int main(int argc, char* argv[]) {
if(ch == '\t') {
w_active = (w_active + 1) % w_num;
}
else if(ch == KEY_BTAB) {
w_active = (w_active + w_num - 1) % w_num;
}
else if(ch != ERR) {
a->onKey(a, ch);
}