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