Changeset 561 in kBuild for trunk/VSlickMacros
- Timestamp:
- Oct 1, 2006 1:43:59 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VSlickMacros/kkeys.e
r252 r561 46 46 47 47 48 void kkeys_switch_lines()48 _command kkeys_switch_lines() 49 49 { 50 50 /* Allocate a selection for copying the current line. */ … … 65 65 } 66 66 67 void kkeys_duplicate_line()67 _command kkeys_duplicate_line() 68 68 { 69 69 /* Allocate a selection for copying the current line. */ … … 81 81 } 82 82 83 void kkeys_delete_right()83 _command kkeys_delete_right() 84 84 { 85 85 col=p_col … … 97 97 } 98 98 99 void kkeys_delete_left()99 _command kkeys_delete_left() 100 100 { 101 101 //denne virker ikkje som den skal!!! 102 102 message "not implemented" 103 /* 103 104 return; 104 105 col=p_col … … 112 113 delete_word(); 113 114 p_col=col 114 } 115 116 void kkeys_scroll_up() 115 */ 116 } 117 118 _command kkeys_scroll_up() 117 119 { 118 120 if (p_cursor_y == 0) … … 121 123 } 122 124 123 void kkeys_scroll_down()125 _command kkeys_scroll_down() 124 126 { 125 127 if (p_cursor_y intdiv p_font_height == p_char_height-1)
Note:
See TracChangeset
for help on using the changeset viewer.