As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
javascript | |
ES6ValidationInspection | |
JSAccessibilityCheckInspection | |
JSBitwiseOperatorUsageInspection | |
JSCheckFunctionSignaturesInspection | |
JSClosureCompilerSyntaxInspection | |
JSCommentMatchesSignatureInspection | |
JSComparisonWithNaNInspection | |
JSConsecutiveCommasInArrayLiteralInspection |
body { | |
padding: 200px 0; | |
background: #cbcdc0; | |
font: 14px/150% Arial, Helvetica, sans-serif; | |
color: #555; | |
} | |
.table_container { | |
display: table; | |
margin: 0 auto; | |
} |
myApp = angular.module 'myApp', [] | |
myApp.service 'FlashMessage', ($rootScope) -> | |
Flash = () -> | |
$rootScope.flashes = [] | |
$rootScope.$on '$routeChangeSuccess', () -> | |
$rootScope.$broadcast 'FlashMessage:reset', $rootScope.flashes = [] | |
return |