Skip to content

Instantly share code, notes, and snippets.

@atodev
Last active November 11, 2020 23:21
Show Gist options
  • Save atodev/7298d914a47e7531d045037aed692835 to your computer and use it in GitHub Desktop.
Save atodev/7298d914a47e7531d045037aed692835 to your computer and use it in GitHub Desktop.
[sublime] how to's #sublime
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