Skip to content

Instantly share code, notes, and snippets.

@dreammonkey
Last active August 29, 2015 14:16
Show Gist options
  • Save dreammonkey/161eee51d7b5e9252e45 to your computer and use it in GitHub Desktop.
Save dreammonkey/161eee51d7b5e9252e45 to your computer and use it in GitHub Desktop.
* $ character not selected when double clicking php variable
open Preferences.sublime-settings-User and add:
[
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?"
]
* enable ALT + UP & DOWN keys for swapping lines up & down... (Eclipse style):
open Sublime-keymappings-User and add:
[
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment