]> git.wh0rd.org Git - nano.git/commitdiff
- General - Add Alt-G (NANO_ALT_GOTO_KEY) as alternate for goto dir in browser
authorChris Allegretta <chrisa@asty.org>
Thu, 10 Jan 2002 00:50:38 +0000 (00:50 +0000)
committerChris Allegretta <chrisa@asty.org>
Thu, 10 Jan 2002 00:50:38 +0000 (00:50 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@991 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
global.c

index 4e19c2f41b8d8b6f5647ff453d36479743dd9fc5..3f7254a4bdb421ea0b98d9c9d1c9d9a1b31fb789 100644 (file)
--- 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).
index b99f01097e6b666b5c68be759ea20e3b5fe2aae6..aeb76acc5d256cd7152cdedc94ce4e649c881457 100644 (file)
--- 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);