On the road again

In this article I will post some useful "howto" items related to Sublime text editor

Trim leading/trailing spaces:
1. Find > Replace
2. Click 'Regular Expression' box
3. Enter ^\s+ as your search string
4. Click 'Find' to confirm it works as anticipated
5. Use 'Replace All' to remove all leading spaces from each newline
For trailing spaces replace regexp with \s+$
 
Add comment