start new:
tmux
start new with session name:
tmux new -s myname
| [alias] | |
| # branches list | |
| b = branch -vv | |
| # branch name | |
| branch-name = "!git rev-parse --abbrev-ref HEAD" | |
| # checkout | |
| c = checkout |
| angular.module('myMdl', []).config(['$httpProvider', function($httpProvider) { | |
| $httpProvider.responseInterceptors.push([ | |
| '$q', '$templateCache', 'activeProfile', | |
| function($q, $templateCache, activeProfile) { | |
| // Keep track which HTML templates have already been modified. | |
| var modifiedTemplates = {}; | |
| // Tests if there are any keep/omit attributes. | |
| var HAS_FLAGS_EXP = /data-(keep|omit)/; |