diff options
author | niallo | 2007-06-26 19:34:26 +0000 |
---|---|---|
committer | niallo | 2007-06-26 19:34:26 +0000 |
commit | d159196cb5b6b857a36ebbc97e19e6205ab1c98d (patch) | |
tree | 6849206fe3eef1efa162451ded69ef09a5e28f04 /conf.c | |
parent | 65c89b8358ae0ace01a76a8d2b6d39c4a673f1fb (diff) | |
download | cwm-d159196cb5b6b857a36ebbc97e19e6205ab1c98d.tar.gz |
modify "exec" dialog so that it auto-completes based on executables in
_PATH_DEFPATH
add an "ssh-to" dialog which auto-completes based on contents of
~/.ssh/known_hosts (M-.)
testing and eyeballing by Simon Kuhnle <simonkuhnle at web.de>, todd@, pedro@
mk@ and David Cathcart <david at cathcart.cx>
ok todd@
Diffstat (limited to '')
-rw-r--r-- | conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> * All rights reserved. * - * $Id: conf.c,v 1.6 2007/06/05 19:03:20 jasper Exp $ + * $Id: conf.c,v 1.7 2007/06/26 19:34:26 niallo Exp $ */ #include "headers.h" @@ -189,6 +189,7 @@ conf_setup(struct conf *c) conf_bindkey(c, kbfunc_lock, XK_Delete, ControlMask|Mod1Mask, 0, NULL); conf_bindkey(c, kbfunc_exec, XK_question, Mod1Mask, 0, NULL); + conf_bindkey(c, kbfunc_ssh, XK_period, Mod1Mask, 0, NULL); conf_bindkey(c, kbfunc_client_hide, XK_Return, Mod1Mask, KBFLAG_NEEDCLIENT, 0); conf_bindkey(c, kbfunc_client_lower, |