Author Topic: Typing the double-quote character (") moves cursor??  (Read 4568 times)

kayakerjess

  • Junior Community Member
  • Posts: 3
  • Hero Points: 0
Typing the double-quote character (") moves cursor??
« on: November 08, 2006, 03:43:27 PM »
When I'm typing, whenever I type a double-quote character, my cursor jumps back to just before the quote, so I actually have to use the arrow key to place my cursor where I want.

Does anyone know how to turn this behavior off?  Thanks.

By the way, I'm using SlickEdit version 9.0.4.
« Last Edit: November 08, 2006, 03:51:51 PM by kayakerjess »

Dennis

  • Senior Community Member
  • Posts: 3998
  • Hero Points: 521
Re: Typing the double-quote character (") moves cursor??
« Reply #1 on: November 08, 2006, 09:22:37 PM »
For the record, this bug concerned HTML and XML and was fixed in 10.0.

For 9.0.4, the fix is to add a restore_pos() at line 3847 of html.e and reload the module (Macro > Load Module...)

Code: [Select]
3846:      if (cfg!=CFG_STRING) {
3847:         restore_pos(orig_pos);  // NEW
3848:         return(VSCODEHELPRC_CONTEXT_NOT_VALID);
3849:     }

kayakerjess

  • Junior Community Member
  • Posts: 3
  • Hero Points: 0
Re: Typing the double-quote character (") moves cursor??
« Reply #2 on: November 09, 2006, 02:18:26 PM »
Thanks Dennis - worked like a charm.  ;) I guess it's time for an upgrade, huh?