- 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-d3aeb78583b8master
parent
c2c9b64705
commit
967a1e28f6
|
@ -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).
|
||||
|
|
3
global.c
3
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);
|
||||
|
|
Loading…
Reference in New Issue