Changeset 3146 for trunk/SlickEdit
- Timestamp:
- Mar 15, 2018, 6:01:15 PM (7 years ago)
- Location:
- trunk/SlickEdit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SlickEdit/kdev.e
r3137 r3146 3565 3565 * Load the color profile (was lexer). 3566 3566 */ 3567 cload(_strip_filename(__FILE__, 'N') '/user.vlx'); 3567 int rc = cload(_strip_filename(__FILE__, 'N') '/user.vlx'); 3568 if (rc != 0) 3569 messageNwait('cload of user.vlx failed: ' rc); 3568 3570 #endif 3569 3571 … … 3576 3578 def_mfsearch_init_flags = 2 | 4; /* MFSEARCH_INIT_CURWORD | MFSEARCH_INIT_SELECTION */ 3577 3579 def_line_insert = 'B'; /* insert before */ 3580 def_updown_col=0; /* cursor movement */ 3581 def_cursorwrap=0; /* ditto. */ 3582 def_click_past_end=1; /* ditto */ 3583 def_start_on_first=1; /* vs A B C; view A. */ 3584 def_vc_system='Subversion' /* svn is default version control */ 3585 #if __VERSION__ >= 16.0 3586 def_auto_unsurround_block=0; /* Delete line, not block. */ 3587 #endif 3588 _config_modify_flags(CFGMODIFY_DEFDATA); 3589 3590 #if __VERSION__ < 21.0 /* I think this is obsolete... */ 3578 3591 def_file_types='All Files (*),' /** @todo make this prettier */ 3579 3592 'C/C++ Files (*.c;*.cc;*.cpp;*.cp;*.cxx;*.c++;*.h;*.hh;*.hpp;*.hxx;*.inl;*.xpm),' … … 3619 3632 'Erlang Files (*.erl;*.hrl),' 3620 3633 ; 3621 3622 def_updown_col=0; /* cursor movement */3623 def_cursorwrap=0; /* ditto. */3624 def_click_past_end=1; /* ditto */3625 def_start_on_first=1; /* vs A B C; view A. */3626 def_vc_system='Subversion' /* svn is default version control */3627 #if __VERSION__ >= 16.03628 def_auto_unsurround_block=0; /* Delete line, not block. */3629 3634 #endif 3630 _config_modify_flags(CFGMODIFY_DEFDATA);3631 3635 3632 3636 /* Make it grok: # include <stuff.h> */ -
trunk/SlickEdit/kkeys.e
r3015 r3146 53 53 #if __VERSION__ >= 15.0 54 54 def 'S-C-=' = svn_diff_with_base 55 #endif 56 #if __VERSION__ >= 22.0 57 def 'C-=' = diff; 58 def 'C--' = nil; 59 def 'S-A-C-=' = wfont_zoom_in; 60 def 'S-A-C--' = wfont_zoom_out; 55 61 #endif 56 62 #if __VERSION__ >= 14.0 … … 80 86 def 'S-M-U' = kkeys_gen_uuid 81 87 #endif 88 #if __VERSION__ >= 22.0 89 def 'S-M-C-=' = wfont_zoom_in; 90 def 'S-M-C--' = wfont_zoom_out; 91 #endif 82 92 /* Fixing brainfucked slickedit silliness: */ 83 93 def 'M-v' = paste
Note:
See TracChangeset
for help on using the changeset viewer.