T O P I C R E V I E W |
znakeeye |
Posted - Jan 29 2008 : 09:24:57 AM Consider this: foo( x );
Then I remember x should be a string, and starts typing a quotation mark behind the variable! foo( x| ); " yields the following:
foo( x"" );
VAX should not add an extra quotation mark if there is a non-space character to the left! |
5 L A T E S T R E P L I E S (Newest First) |
feline |
Posted - Jan 31 2008 : 3:58:16 PM VA already works like that for me. |
znakeeye |
Posted - Jan 31 2008 : 02:39:44 AM I believe the same principle should be used if there is an alpha character to the right.
foo(|""Hello); vs foo(|"Hello);
|
feline |
Posted - Jan 30 2008 : 6:10:17 PM I have put in a feature request for this:
case=12087 |
znakeeye |
Posted - Jan 30 2008 : 03:08:52 AM The equal sign is non-alpha. Rephrase: VAX should not add an extra quotation mark if there is an alpha character to the left! |
feline |
Posted - Jan 29 2008 : 4:40:27 PM So what happens when I am typing:
std::string strName="|
Here I want the closing double quote to be inserted. |