Hello
Is it somehow possible to automatically convert a
"." operator to a
"->" operator editing C or C++, if it is clear that the variable to which the member may belong is a pointer?
Example:
struct { int a, b;} *s;
...
keystrokes:
s
s.
s-> // this is changed by SE during typing, because SE knows, that this is a pointer
s->a
This is a nice feature in QT editor and I would like to use it in SE.
Perhaps this is implemented and I did not find it? Or perhaps this be done with a SE macro?
