diff options
author | June McEnroe <june@causal.agency> | 2020-04-07 13:59:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-07 13:59:54 -0400 |
commit | 7d62762609c4014e33f731bd1809fd2319bfa203 (patch) | |
tree | ed0a606b5634dcde376ee1bfa047a211cce8e8f5 | |
parent | Check ignores against id (diff) | |
download | catgirl-7d62762609c4014e33f731bd1809fd2319bfa203.tar.gz catgirl-7d62762609c4014e33f731bd1809fd2319bfa203.zip |
Revert "Add C-o as alias of M-/"
This reverts commit 3a156540b8d134b05d7c318ac047a0c690cdc950. Decided I don't like having two keys do the same thing (other than "special" keys).
Diffstat (limited to '')
-rw-r--r-- | catgirl.1 | 2 | ||||
-rw-r--r-- | ui.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/catgirl.1 b/catgirl.1 index a7c096c..623c314 100644 --- a/catgirl.1 +++ b/catgirl.1 @@ -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 diff --git a/ui.c b/ui.c index ffaff45..1ff34fd 100644 --- a/ui.c +++ b/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); |