Changes between Initial Version and Version 2 of Ticket #3725
- Timestamp:
- 11/14/16 12:01:42 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3725 – Description
initial v2 11 11 C Copy to clipboard the current file's path 12 12 D Copy to clipboard the current file itself 13 X Cut to clipboard the current file itself 14 V Paste files from clipboard 13 15 Q Copy to clipboard the first URL mentioned in the file. 14 16 }}} 15 17 16 This is quite limiting when there are many menu items. The attached patch lets the user specify any hotkey. Example (only the two lastlines have changed):18 This is quite limiting when there are many menu items. The attached patch lets the user specify any hotkey. Example (only the last four lines have changed): 17 19 18 20 {{{ … … 26 28 C Copy to clipboard the current file's path 27 29 ctrl-c Copy to clipboard the current file itself 30 ctrl-x Cut to clipboard the current file itself 31 ctrl-v Paste files from clipboard 28 32 f2 Copy to clipboard the first URL mentioned in the file. 29 33 }}} 30 34 31 (only the two lastlines have changed: see "ctrl-c" and "f2".)35 (only the last four lines have changed: see "ctrl-c" and "f2".) 32 36 33 37 Note: because of the way hotkeys work in MC (see dlg_try_hotkey()), the hotkeys "alt-x" and "alt-X" are equivalent to pressing just "x". So alt keys shouldn't be used as hotkeys. (dlg_try_hotkey() could be modified to work around this but that's a matter for a separate ticket.)