Created
April 25, 2017 09:14
-
-
Save richmondwang/a1b0b7ebbce3aecab1e39e959d1f052d to your computer and use it in GitHub Desktop.
Revisions
-
VJ Cagay revised this gist
Dec 25, 2016 . 1 changed file with 2 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,13 @@ # Make mouse useful # Toggle mouse on bind m \ set -g mouse on \;\ display 'Mouse mode: ON' # Toggle mouse off bind M \ set -g mouse off \;\ display 'Mouse mode: OFF' # Bind Split Panes and Windows to automatically start in current dir bind % split-window -h -c '#{pane_current_path}' -
VJ Cagay revised this gist
Nov 6, 2015 . 1 changed file with 4 additions and 8 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,18 +1,14 @@ # Make mouse useful # Toggle mouse on bind m \ set -g mouse-utf8 on \;\ set -g mouse on \;\ display 'Mouse: ON' # Toggle mouse off bind M \ set -g mouse off \;\ set -g mouse off \;\ display 'Mouse: OFF' # Bind Split Panes and Windows to automatically start in current dir -
VJ Cagay revised this gist
Sep 15, 2015 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -15,6 +15,10 @@ bind M \ set -g mouse-select-window off \;\ display 'Mouse: OFF' # Bind Split Panes and Windows to automatically start in current dir bind % split-window -h -c '#{pane_current_path}' bind '"' split-window -v -c '#{pane_current_path}' # Active pane border colour set-option -g pane-active-border-fg yellow -
VJ Cagay revised this gist
Sep 15, 2015 . 1 changed file with 15 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,19 @@ # Make mouse useful # Toggle mouse on bind m \ set -g mode-mouse on \;\ set -g mouse-resize-pane on \;\ set -g mouse-select-pane on \;\ set -g mouse-select-window on \;\ display 'Mouse: ON' # Toggle mouse off bind M \ set -g mode-mouse off \;\ set -g mouse-resize-pane off \;\ set -g mouse-select-pane off \;\ set -g mouse-select-window off \;\ display 'Mouse: OFF' # Active pane border colour set-option -g pane-active-border-fg yellow -
VJ Cagay revised this gist
Sep 14, 2015 . 1 changed file with 2 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,5 @@ # Make mouse useful bind m run "if [[ `tmux show-option -w | grep mode-mouse.*on` ]]; then toggle=off; else toggle=on; fi; tmux display-message \"TMUX Mouse Mode: \$toggle\"; tmux set-option -w mode-mouse \$toggle &> /dev/null; for cmd in mouse-select-pane mouse-resize-pane mouse-select-window; do tmux set-option -g \$cmd \$toggle &> /dev/null; done;" # Active pane border colour set-option -g pane-active-border-fg yellow -
VJ Cagay created this gist
Sep 10, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ # Mouse mode set -g mode-mouse on set -g mouse-resize-pane on set -g mouse-select-pane on set -g mouse-select-window on # Active pane border colour set-option -g pane-active-border-fg yellow # Show Pane Number set-option -g status-left '#P'