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:
| function getText(node) { | |
| if (node.nodeType === 3) { | |
| return node.data; | |
| } | |
| var txt = ''; | |
| if (node = node.firstChild) do { | |
| txt += getText(node); |