This file contains 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
var gulp = require('gulp'); | |
var browserSync = require('browser-sync').create(); | |
var setupWatchers = function() { | |
gulp.watch(['./app/views/**/*.erb', | |
'./app/assets/javascripts/**/*.js', | |
'./app/assets/stylesheets/**/*.scss'], ['reload']); | |
}; | |
gulp.task('reload', function(){ |
This file contains 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
[ | |
{ | |
// wrap a selection with double quotes (") | |
"key": "shift+'", | |
"command": "editor.action.insertSnippet", | |
"when": "editorHasSelection && editorTextFocus", | |
"args": { | |
"snippet": "\"${TM_SELECTED_TEXT}$1" | |
} | |
}, |