Souce : https://twitter.com/benfrain/status/570696559978901505
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
| #!/usr/bin/env zsh | |
| function arp { | |
| echo "use 'ip n' instead." | |
| return 1 | |
| } | |
| function ifconfig { | |
| echo "use 'ip a (ip addr)', 'ip link', or 'ip -s (ip -stats)' instead." | |
| return 1 |
- source
- Vueはvue.jsのコアとなるコンストラクタ
- インスタンスが作られたときにデータバインディングが開始される
- オプションを取ることも出来て、DOMやデータやメソッドについて定義出来る
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
| # split windows like vim | |
| # vim's definition of a horizontal/vertical split is reversed from tmux's | |
| bind s split-window -v | |
| bind v split-window -h | |
| # move around panes with hjkl, as one would in vim after pressing ctrl-w | |
| bind h select-pane -L | |
| bind j select-pane -D | |
| bind k select-pane -U | |
| bind l select-pane -R |
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
| license: gpl-3.0 |