SlickEdit Community

SlickEdit Product Discussion => SlickEdit® => Topic started by: mstumpel on March 01, 2013, 10:56:17 AM

Title: double quote not possible in slickedit 2011
Post by: mstumpel on March 01, 2013, 10:56:17 AM
Hi,

I am using slickedit 2011 for linux. I have the standard CUA keyboard emulation. With these settings it is not possible to enter a " (double quote). pressing it twice or a space after the first one also does not have any effect.
Did I miss something? or is there a setting for this?

Regards
Marcel
Title: Re: double quote not possible in slickedit 2011
Post by: Matthew on March 01, 2013, 03:52:12 PM
Very strange indeed? Did you resolve this? If not, I suggest you record a macro so we can see what SlickEdit thinks is coming in.
Open a plain text file, then select the Macro > Record Macro menu item. Go to a blank line in the file and press the key(s) that are giving you trouble. Select the Macro > Stop Recording Macro menu item. A dialog will come up asking you to name or save the macro. You don't need to do that. Just click the "Edit" button on that dialog. You'll see a small Slick-C macro file that should look something like the following. (This is for typing a double quote followed by a single quote). Let me know if your macro looks radically different.
Code: [Select]
_command last_recorded_macro() name_info(','VSARG2_MARK|VSARG2_REQUIRES_EDITORCTL)
{
    _macro('R',1);
    keyin("\"'");
}