Change the look of folded code
-
Is it possible to change the folding of code to look like the following?
Unfolded code:
typedef struct { int pos; char name; } MyType; /******* * * Short description * * More details * *******/ int main(int argc, char *argv[]) { printf("Hello World!\n"); }
Folded code:
typedef struct { ... } MyType; /* Short description ... */ int main(int argc, char *argv[]) { ... }
-
No it’s not possible.