Changes between Initial Version and Version 3 of Ticket #1401


Ignore:
Timestamp:
07/13/09 07:53:42 (15 years ago)
Author:
iNode
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1401

    • Property Status changed from new to assigned
    • Property Milestone changed from 4.7 to 4.7.0-pre1
    • Property Owner set to angel_il
    • Property Type changed from defect to enhancement
    • Property Severity changed from no branch to on review
  • Ticket #1401 – Description

    initial v3  
    1 . 
     1Capability to load keymap from system mc.lib file or user's mc ini instead of use hardcoded mc.lib.  
     2 
     3For syntax example for define escape sequences see misc/mc.lib file in the source tree. 
     4 
     5The way to get escape sequence is [F9]->Optioins->Learn Keys. 
     6Define some key (i.e. "Function key 1"), save and exit. 
     7 
     8Now we can see it in mc ini file:  
     9{{{ 
     10grep 'f1=' ~/.mc/ini 
     11}}} 
     12 
     13Usage example: 
     14{{{ 
     15alt left=\\e\\eOD 
     16alt right=\\e\\eOC 
     17alt up=\\e\\eOA 
     18alt down=\\e\\eOB 
     19ctrl left=\\e[D 
     20ctrl right=\\e[C 
     21ctrl up=\\e[A 
     22ctrl down=\\e[B 
     23}}}