Last active
November 11, 2020 23:21
-
-
Save atodev/7298d914a47e7531d045037aed692835 to your computer and use it in GitHub Desktop.
[sublime] how to's #sublime
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Upper / Lower case | |
To convert to upper case: In quick succession, hit Cmd–K then Cmd–U (Mac) or Ctrl–K then Ctrl–U (Windows). | |
To convert to lower case: In quick succession, hit Cmd–K then Cmd–L (Mac) or Ctrl–K then Ctrl–L (Windows). | |
#Remove open lines in text | |
Step 1: press on ctrl+H | |
Step 2: press on RegEX key | |
Step 3: write this in the Find: ^[\s]*?[\n\r]+ | |
Step 4: replace all | |
or - ^\n|^\s+$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment