SlickEdit Community

SlickEdit Product Discussion => SlickEdit® => Topic started by: soumik on September 07, 2006, 04:30:57 PM

Title: non blinking cursor
Post by: soumik on September 07, 2006, 04:30:57 PM
Hi All,
I am using 11.0.2 and was wondering if there is any way to have a non blinking cursor. Could not find it anywhere.
Thanks,
Soumik.
Title: Re: non blinking cursor
Post by: Dennis on September 08, 2006, 03:10:16 PM
Not sure if this setting will stick forever (there is some code that , but try this macro.

Code: [Select]
#include "slick.sh"
_command void noblink() name_info(',')
{
   _default_option('k',false);
   _config_modify_flags(CFGMODIFY_OPTION);
}

Save that to "noblink.e" and go to Macro > Load Module... and load it, then type "noblink" on the command line.
Title: Re: non blinking cursor
Post by: hs2 on September 08, 2006, 03:19:35 PM
Thanx Dennis.
I used this to adopt the cursor style, but I didn't know how2 stop blinking...
Code: [Select]
_cursor_shape('824 1000 100 1000 500 1000 100 600');   
HS2

BTW: It's a sticky option.