diff options
| author | C. McEnroe | 2020-02-09 03:41:46 -0500 | 
|---|---|---|
| committer | C. McEnroe | 2020-02-09 03:41:46 -0500 | 
| commit | e6e2021d480adab9dd35873810f040524d97092a (patch) | |
| tree | 37e8b352651bd0202c49d0e5fa059e75132aebe7 /ui.c | |
| parent | 40e362f505b2b48656791b25193d67ff4af9a11b (diff) | |
Add C-b and C-f
Diffstat (limited to 'ui.c')
| -rw-r--r-- | ui.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -644,7 +644,9 @@ static void keyCtrl(wchar_t ch) {  	switch (ch ^ L'@') {  		break; case L'?': edit(id, EditErase, 0);  		break; case L'A': edit(id, EditHome, 0); +		break; case L'B': edit(id, EditLeft, 0);  		break; case L'E': edit(id, EditEnd, 0); +		break; case L'F': edit(id, EditRight, 0);  		break; case L'H': edit(id, EditErase, 0);  		break; case L'I': edit(id, EditComplete, 0);  		break; case L'J': edit(id, EditEnter, 0); | 
