Commit 967a1e28 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

- 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
No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
......@@ -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).
......
......@@ -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);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment