1
1

* main.c (midnight_callback): Ctrl-Shift-Enter now copies full

path to the command line, like in Total Commander.
Этот коммит содержится в:
Pavel Roskin 2003-11-14 20:43:11 +00:00
родитель 8147825da3
Коммит 4a9c0da0b0
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2003-11-14 Pavel Roskin <proski@gnu.org>
* main.c (midnight_callback): Ctrl-Shift-Enter now copies full
path to the command line, like in Total Commander.
2003-11-07 Pavel Roskin <proski@gnu.org>
* boxes.c: Include "../vfs/gc.h" if VFS is used.

Просмотреть файл

@ -1497,6 +1497,13 @@ midnight_callback (struct Dlg_head *h, dlg_msg_t msg, int parm)
return MSG_HANDLED;
}
/* Ctrl-Shift-Enter */
if (parm == (KEY_M_CTRL | KEY_M_SHIFT | '\n')) {
copy_current_pathname ();
copy_prog_name ();
return MSG_HANDLED;
}
if ((!alternate_plus_minus || !(console_flag || xterm_flag))
&& !quote && !current_panel->searching) {
if (!only_leading_plus_minus) {