From 22d51ec1ead8077f9528727db56e54e997da1775 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 12 Jul 2009 16:15:34 +0000 Subject: Add a "back to indentation" key in copy mode to move the cursor to the first non-whitespace character. ^ with vi and M-m with emacs key bindings. Another from Kalle Olavi Niemitalo, thanks. --- status.c | 1 + 1 file changed, 1 insertion(+) (limited to 'status.c') diff --git a/status.c b/status.c index 8aea62a7..6841468f 100644 --- a/status.c +++ b/status.c @@ -709,6 +709,7 @@ status_prompt_key(struct client *c, int key) } break; case MODEKEYCMD_STARTOFLINE: + case MODEKEYCMD_BACKTOINDENTATION: if (c->prompt_index != 0) { c->prompt_index = 0; c->flags |= CLIENT_STATUS; -- cgit