i was trying to get a hold of 'Scriptum' but it seems that editor is
not available now (or was never fully developed)
i use gvim on Linux and it's good
However i'd like something better which is sensitive to indentations
of cut-and-pastes
for example
if i have a snippet
.............declaration
.............for (){
....................code
....................code
..............}
and i want to paste it into an if condition of a larger program that
is
indented much further inside,
............................if {
.................................other code
............................}
The paste ends up looking like this:
............................if
.............declaration
.............for (){
....................code
....................code
..............}
.................................other code
............................}
Anyone recommend an editor which feels like vi but which is more
sensitive to these syntax ?
Even better:
Can anyone recommend a code generator that will sweep through the code
and re-indent the source? Then i could just re-open the output file
in vi and continue.
and TIA