Changeset 3146 for trunk/SlickEdit


Ignore:
Timestamp:
Mar 15, 2018, 6:01:15 PM (7 years ago)
Author:
bird
Message:

Slickedit/k*.e: updates

Location:
trunk/SlickEdit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SlickEdit/kdev.e

    r3137 r3146  
    35653565     * Load the color profile (was lexer).
    35663566     */
    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);
    35683570#endif
    35693571
     
    35763578    def_mfsearch_init_flags = 2 | 4;    /* MFSEARCH_INIT_CURWORD | MFSEARCH_INIT_SELECTION */
    35773579    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... */
    35783591    def_file_types='All Files (*),'     /** @todo make this prettier */
    35793592                   'C/C++ Files (*.c;*.cc;*.cpp;*.cp;*.cxx;*.c++;*.h;*.hh;*.hpp;*.hxx;*.inl;*.xpm),'
     
    36193632                   'Erlang Files (*.erl;*.hrl),'
    36203633                   ;
    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.0
    3628     def_auto_unsurround_block=0;        /* Delete line, not block. */
    36293634#endif
    3630     _config_modify_flags(CFGMODIFY_DEFDATA);
    36313635
    36323636    /* Make it grok:  # include <stuff.h> */
  • trunk/SlickEdit/kkeys.e

    r3015 r3146  
    5353#if __VERSION__ >= 15.0
    5454def  'S-C-='    = svn_diff_with_base
     55#endif
     56#if __VERSION__ >= 22.0
     57def  'C-='      = diff;
     58def  'C--'      = nil;
     59def  'S-A-C-='  = wfont_zoom_in;
     60def  'S-A-C--'  = wfont_zoom_out;
    5561#endif
    5662#if __VERSION__ >= 14.0
     
    8086def  'S-M-U'    = kkeys_gen_uuid
    8187#endif
     88#if __VERSION__ >= 22.0
     89def  'S-M-C-='  = wfont_zoom_in;
     90def  'S-M-C--'  = wfont_zoom_out;
     91#endif
    8292/* Fixing brainfucked slickedit silliness: */
    8393def  'M-v'      = paste
Note: See TracChangeset for help on using the changeset viewer.