mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 22:13:02 +01:00
INSTALL.md should reflect how you build on OSX now.
This commit is contained in:
parent
3a0e85fc5f
commit
84775df888
4
main.c
4
main.c
@ -304,10 +304,10 @@ int main(int argc, char* argv[]) {
|
|||||||
ch = getch();
|
ch = getch();
|
||||||
if(ch == '\t') {
|
if(ch == '\t') {
|
||||||
w_active = (w_active + 1) % w_num;
|
w_active = (w_active + 1) % w_num;
|
||||||
}
|
}
|
||||||
else if(ch == KEY_BTAB) {
|
else if(ch == KEY_BTAB) {
|
||||||
w_active = (w_active + w_num - 1) % w_num;
|
w_active = (w_active + w_num - 1) % w_num;
|
||||||
}
|
}
|
||||||
else if(ch != ERR) {
|
else if(ch != ERR) {
|
||||||
a->onKey(a, ch);
|
a->onKey(a, ch);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user