nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 967a1e28f6c365942b85aa9c8581ef90437bba70
parent c2c9b647056ac92e3024385cfbfce676e55a4850
Author: Chris Allegretta <chrisa@asty.org>
Date:   Thu, 10 Jan 2002 00:50:38 +0000

- General - Add Alt-G (NANO_ALT_GOTO_KEY) as alternate for goto dir in browser


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@991 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 2++
Mglobal.c | 3++-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -2,6 +2,8 @@ CVS code - - General - Add Meta-A as alternate keyystroke for ^^ for people with non-US keyboards. + - Add Alt-G (NANO_ALT_GOTO_KEY) as alternate for goto dir in + browser. - Better partial word checking code. New function search.c:is_whole_word(), changes to findnextstr(), and nano.c:do_int_spell_fix() (Rocco Corsi). diff --git a/global.c b/global.c @@ -596,7 +596,8 @@ void shortcut_init(int unjustify) 0, NANO_NEXTPAGE_FKEY, KEY_NPAGE, VIEW, 0); sc_init_one(&browser_list[4], NANO_GOTO_KEY, _("Goto"), - nano_gotodir_msg, 0, NANO_GOTO_FKEY, 0, VIEW, 0); + nano_gotodir_msg, NANO_ALT_GOTO_KEY, NANO_GOTO_FKEY, 0, + VIEW, 0); sc_init_one(&gotodir_list[0], NANO_HELP_KEY, _("Get Help"), nano_help_msg, 0, 0, 0, VIEW, do_help);