• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Text editor?

rivan

Diamond Member
There's a sea of text editors out there - I'm looking for a Windows version of TextWrangler.

I need powerful find/replace, prefix/suffixing lines, shift case, entab/detab, sorting and a command similar to "Process lines containing..." (which has options including copy to clipboard and delete).

Free = win.

What do you all use?
 
This.

find/replace: /[regex]/, :[line range]s/[regex]/[replacement]/[g] (or use the GUI.)
prefix/suffixing: /^[regex]/, /[regex]$/
shift case: ~
entab/detab: >, < (followed by movement command)
sorting: Well, it's not intrinsic, but you can try ":[line range]!sort"
Process lines containing: You got me there. :$

By the way, [line range] can be such things as:
&#37;: all lines
^,.: Start to this line
42,$: Line 42 to the end.

So maybe that covers the last criterion?
 
Back
Top