Changes between Initial Version and Version 2 of Ticket #3725


Ignore:
Timestamp:
11/14/16 12:01:42 (7 years ago)
Author:
mooffie
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3725 – Description

    initial v2  
    1111C      Copy to clipboard the current file's path 
    1212D      Copy to clipboard the current file itself 
     13X      Cut to clipboard the current file itself 
     14V      Paste files from clipboard 
    1315Q      Copy to clipboard the first URL mentioned in the file. 
    1416}}} 
    1517 
    16 This is quite limiting when there are many menu items. The attached patch lets the user specify any hotkey. Example (only the two last lines have changed): 
     18This 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): 
    1719 
    1820{{{ 
     
    2628C      Copy to clipboard the current file's path 
    2729ctrl-c Copy to clipboard the current file itself 
     30ctrl-x Cut to clipboard the current file itself 
     31ctrl-v Paste files from clipboard 
    2832f2     Copy to clipboard the first URL mentioned in the file. 
    2933}}} 
    3034 
    31 (only the two last lines have changed: see "ctrl-c" and "f2".) 
     35(only the last four lines have changed: see "ctrl-c" and "f2".) 
    3236 
    3337Note: 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.)