diff options
-rw-r--r-- | chatte.1 | 3 | ||||
-rw-r--r-- | ui.c | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -206,6 +206,9 @@ IRC formatting codes. .It Aq C-l Redraw the UI. . +.It Aq M-m +Insert a blank line in the view. +. .It Ao M-0 Ac ... Ao M-9 Ac Switch to view by number. See @@ -460,6 +460,7 @@ static void keyChar(wchar_t ch) { break; case L'f': edit(ui.view->tag, EditForeWord, 0); break; case L'\b': edit(ui.view->tag, EditKillBackWord, 0); break; case L'd': edit(ui.view->tag, EditKillForeWord, 0); + break; case L'm': uiLog(ui.view->tag, UICold, L""); break; default: { if (ch >= L'0' && ch <= L'9') uiViewNum(ch - L'0'); } |