Allow console logs
// eslint-disable-next-line no-console
  
    
      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
    
  
  
    
  | rsync -av --progress USERNAME@HOST:/home/nameprod/public_html/wp-content/plugins . | |
| rsync -av --progress USERNAME@HOST:/home/namestag/public_html/wp-content/plugins . | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| # This way you can customize which branches should be skipped when | |
| # prepending commit message. | |
| if [ -z "$BRANCHES_TO_SKIP" ]; then | |
| BRANCHES_TO_SKIP=(develop test) | |
| fi | |
| BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
| BRANCH_NAME="${BRANCH_NAME##*/}" | 
  
    
      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
    
  
  
    
  | <? while ( have_posts() ) : the_post(); ?> | |
| <? if ( have_rows( 'flexible_content' ) ) : ?> | |
| <? while ( have_rows( 'flexible_content' ) ) : the_row(); ?> | |
| <? $layout = get_flexible_content_template_uri( get_row_layout() ); ?> | |
| <? if ( file_exists( $layout ) ) include $layout; ?> | |
| <? endwhile; ?> | |
| <? endif; ?> | |
| <? endwhile; ?> | 
1. Open settings.json
Command + Shift + P
Prefrerences: Open Settings (JSON)
2. Turn off Ripgrep
"search.useRipgrep": false
 Andy Miller
                            
                                posted on 09/25/2018
 
Change Mac screenshots from png to jpg.
defaults write com.apple.screencapture type JPG
source: https://www.macrumors.com/how-to/save-location-format-macos-screenshots/
Show command palette
CMD + p
Show suggestions (intellisense style)
CTRL + SPACE either on a new line or by highlighting a word
Move all highlighted up or down
ALT + ARROW UP/DOWN
Open integrated terminal
NewerOlder