From 5ef5bd7c3127f00dca54499b48802bba85953a6a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 14 Jul 2009 06:39:25 +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. --- server.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'server.c') diff --git a/server.c b/server.c index 7f556952..fee656fd 100644 --- a/server.c +++ b/server.c @@ -1,4 +1,4 @@ -/* $Id: server.c,v 1.156 2009-07-14 06:38:14 nicm Exp $ */ +/* $Id: server.c,v 1.157 2009-07-14 06:39:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -351,6 +351,9 @@ server_main(int srv_fd) server_handle_windows(&pfd); server_handle_clients(&pfd); + /* Collect any unset key bindings. */ + key_bindings_clean(); + /* * If we have no sessions and clients left, let's get out * of here... -- cgit