mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Add hotkey CTRL+t for change codesets of panels
This commit is contained in:
parent
45abfa28a4
commit
b019ea7f9c
@ -825,7 +825,7 @@ static menu_entry LeftMenu[] = {
|
||||
{' ', "", NULL_HOTKEY, 0},
|
||||
{' ', N_("&Filter..."), NULL_HOTKEY, filter_cmd},
|
||||
{' ', "",NULL_HOTKEY, 0},
|
||||
{' ', N_("&Encoding..."), NULL_HOTKEY, encoding_cmd},
|
||||
{' ', N_("&Encoding... C-t"), 'C', encoding_cmd},
|
||||
#ifdef USE_NETCODE
|
||||
{' ', "", NULL_HOTKEY, 0},
|
||||
#ifdef WITH_MCFS
|
||||
@ -851,7 +851,7 @@ static menu_entry RightMenu[] = {
|
||||
{' ', "", NULL_HOTKEY, 0},
|
||||
{' ', N_("&Filter..."), NULL_HOTKEY, filter_cmd},
|
||||
{' ', "",NULL_HOTKEY, 0},
|
||||
{' ', N_("&Encoding..."), NULL_HOTKEY, encoding_cmd},
|
||||
{' ', N_("&Encoding... C-t"), 'C', encoding_cmd},
|
||||
#ifdef USE_NETCODE
|
||||
{' ', "", NULL_HOTKEY, 0},
|
||||
#ifdef WITH_MCFS
|
||||
|
@ -2196,7 +2196,8 @@ static const panel_key_map panel_keymap [] = {
|
||||
{ XCTRL('n'), move_down }, /* C-n like emacs */
|
||||
{ XCTRL('s'), start_search }, /* C-s like emacs */
|
||||
{ ALT('s'), start_search }, /* M-s not like emacs */
|
||||
{ XCTRL('t'), mark_file },
|
||||
/* { XCTRL('t'), mark_file },*/
|
||||
{ XCTRL('t'), encoding_cmd },
|
||||
{ ALT('o'), chdir_other_panel },
|
||||
{ ALT('i'), sync_other_panel },
|
||||
{ ALT('l'), chdir_to_readlink },
|
||||
|
Loading…
Reference in New Issue
Block a user