Changeset 3555 in kBuild
- Timestamp:
- Feb 16, 2022 1:20:30 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SlickEdit/kkeys.e
r3499 r3555 46 46 def 'INS' = boxer_paste 47 47 def 'S-INS' = insert_toggle 48 def 'S- ' = kkey_space; 48 49 def 'C-UP' = kkeys_scroll_down 49 50 def 'C-DOWN' = kkeys_scroll_up … … 93 94 def 'M-v' = paste 94 95 96 /* Want proper shift-space in C. */ 97 defeventtab c_keys 98 def 'S- ' = kkey_space; 99 95 100 96 101 /** Saves the cursor position. */ … … 108 113 } 109 114 115 /** Fixes shift-space while in block select, default slickedit since a while 116 * is to exit selection mode and insert a single space. A long long time 117 * ago, I think slickedit would ask if you wanted the normal 'space' 118 * behaviour for this. */ 119 _command void kkey_space() 120 { 121 /** @todo figure out when these functions were added and such. */ 122 if (!select_active() || _select_type('') != 'BLOCK') 123 keyin(' '); 124 else 125 block_insert_text(' '); 126 } 110 127 111 128 _command kkeys_switch_lines()
Note:
See TracChangeset
for help on using the changeset viewer.