Command | Key |
---|---|
Select a word. | Command + D |
Select all instances of a word. Select a code, line, or word first the hit this combo to select the others with the same instances. | Command + Ctrl + G |
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
Here is a list of scopes to use in Sublime Text 2 snippets - | |
ActionScript: source.actionscript.2 | |
AppleScript: source.applescript | |
ASP: source.asp | |
Batch FIle: source.dosbatch | |
C#: source.cs | |
C++: source.c++ | |
Clojure: source.clojure | |
CoffeeScript: source.coffee |
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
add_action( 'wp_enqueue_scripts', 'wps_enqueue_lt_ie9' ); | |
/** | |
* Conditionally Enqueue Script for IE browsers less than IE 9 | |
* | |
* @link http://php.net/manual/en/function.version-compare.php | |
* @uses wp_check_browser_version() | |
*/ | |
function wps_enqueue_lt_ie9() { | |
global $is_IE; |
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
// stop background image and opacity change flicker in IE11 | |
@include transform(rotate(0)); |
https://apple.stackexchange.com/questions/117754/finder-open-new-finder-tab-in-the-same-directory
cmd + ctrl + o
cmd + shift + left/right arrow
brew install [email protected]
https://laravel.com/docs/6.x/valet#installation
brew services restart [email protected]
brew services start [email protected]
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
# https://www.savjee.be/2016/06/Deploying-website-to-ftp-or-amazon-s3-with-BitBucket-Pipelines/ | |
# https://github.com/git-ftp/ | |
# | |
# If using plain FTP, switch sftp to ftp and remove --insecure flag | |
# | |
# $VARIABLES: These are bitbucket repo variables. Set under Your Bitbucket Repo > Settings > Repository variables | |
# | |
# $SFTP_HOST example: sftp://myhostnamehere/public_html/staging | |
# | |
# --insecure flag: Set due to error "curl failed to verify the legitimacy of the server and therefore could not |
OlderNewer