Topic: single quote as a word separator (1 of 5), Read 41 times
Conf: Installation, Configuration
From: John Zimmerman
Date: Wednesday, May 14, 2003 06:39 PM

I'm interested in adding the single quote character as a word separator, but I haven't been able to think of a way to add it to the vedit.cfg file.

Currently my setting is

Config_String( WORD_SEP, ',;:" *,!()=+-%.' )

I tried using the unix escape sequence \' but the next time I loaded vedit it crashed Windows 2000!

I also tried using the escape sequence |h27, but this was interpreted as |,h,2,7 as word separators.

The single quote character as a word separator would be very helpful for php and c programming.

Thanks!

 


Topic: Re: single quote as a word separator (2 of 5), Read 45 times
Conf: Installation, Configuration
From: Ted Green
Date: Wednesday, May 14, 2003 06:41 PM

At 06:39 PM 5/14/2003, you wrote:
>I'm interested in adding the single quote character as a word separator, but I haven't been able to think of a way to add it to the vedit.cfg file.
>
>Currently my setting is
>
> Config_String( WORD_SEP, ',;:" *,!()=+-%.' )

Use Config_String( WORD_SEP, \,;:" *,!()=+-%.'\)

Many different charcters can be used as string delimiters in VEDIT.

Ted.

 


Topic: Re: single quote as a word separator (3 of 5), Read 46 times
Conf: Installation, Configuration
From: John Zimmerman
Date: Wednesday, May 14, 2003 07:01 PM

Ted, thanks for your quick response.

Unfortunately your suggestion did not work. I replaced my vedit.cfg entry by cutting and pasting your entry. This caused Windows 2000 to crash (a hard, pull out the plug crash). I tried several variations, but all with the same results.

I'm using version 6.01.2.

Thanks

 


Topic: Re: single quote as a word separator (4 of 5), Read 49 times
Conf: Installation, Configuration
From: Ted Green
Date: Wednesday, May 14, 2003 11:21 PM

At 07:02 PM 5/14/2003, you wrote:
>Unfortunately your suggestion did not work. I replaced my vedit.cfg entry by cutting and pasting your entry. This caused Windows 2000 to crash (a hard, pull out the plug crash). I tried several variations, but all with the same results.

Strange that you got a crash; I just get an error message.

My mistake - "\" cannot be used as a delimiter, but ` or $ are OK:

Use Config_String( WORD_SEP, `,;:" *,!()=+-%.'`)

Ted.

 


Topic: Re: single quote as a word separator (5 of 5), Read 50 times
Conf: Installation, Configuration
From: John Zimmerman
Date: Thursday, May 15, 2003 09:28 AM

Ted, thanks again. Your suggestion worked. I think you folks have the best editor out there, and we recently bought several more licenses where I work.