Author Topic: non blinking cursor  (Read 4733 times)

soumik

  • Junior Community Member
  • Posts: 2
  • Hero Points: 0
non blinking cursor
« 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.

Dennis

  • Senior Community Member
  • Posts: 3961
  • Hero Points: 517
Re: non blinking cursor
« Reply #1 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.

hs2

  • Senior Community Member
  • Posts: 2761
  • Hero Points: 292
Re: non blinking cursor
« Reply #2 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.