Revert "Add C-o as alias of M-/"
This reverts commit 3a156540b8
.
Decided I don't like having two keys do the same thing (other than
"special" keys).
master
parent
73bda18110
commit
7d62762609
|
@ -441,8 +441,6 @@ Complete nick, channel, command or macro.
|
|||
Redraw the UI.
|
||||
.It Ic C-n
|
||||
Switch to next window.
|
||||
.It Ic C-o
|
||||
Switch to previously selected window.
|
||||
.It Ic C-p
|
||||
Switch to previous window.
|
||||
.It Ic C-v
|
||||
|
|
1
ui.c
1
ui.c
|
@ -946,7 +946,6 @@ static void keyCtrl(wchar_t ch) {
|
|||
break; case L'K': edit(id, EditDeleteTail, 0);
|
||||
break; case L'L': clearok(curscr, true);
|
||||
break; case L'N': uiShowNum(windows.show + 1);
|
||||
break; case L'O': windowShow(windows.swap);
|
||||
break; case L'P': uiShowNum(windows.show - 1);
|
||||
break; case L'T': edit(id, EditTranspose, 0);
|
||||
break; case L'U': edit(id, EditDeleteHead, 0);
|
||||
|
|
Loading…
Reference in New Issue