T O P I C R E V I E W |
tailsu |
Posted - Sep 04 2007 : 04:35:42 AM Suppose I have a function void foo(char*)
When I write 'foo(' VA automatically places the ) to produce 'foo()'. But when I open a " to pass a literal string to foo, VA's not smart enough to place the ending " before the closing paren and leaves me at foo("*cursor*)
Wouldn't smarter placing of ending "s and others be a nice feature to have? |
4 L A T E S T R E P L I E S (Newest First) |
feline |
Posted - Sep 05 2007 : 1:56:40 PM Interesting, I am seeing the same thing. I would have expected a closing bracket to be inserted.
case=8623 |
tailsu |
Posted - Sep 05 2007 : 07:29:28 AM Another use case is when you have void foo() and somewhere you copy-and-paste foo and get: foo;
writing ( after foo won't automatically put a ).
|
feline |
Posted - Sep 04 2007 : 3:09:39 PM A reasonable point:
case=8561 |
sl@sh |
Posted - Sep 04 2007 : 10:33:44 AM Looks like a bug to me. When I type char* str = "| then I do get the closing ". |