This commit is contained in:
2018-06-14 21:15:17 +04:00
parent e615a15cb9
commit ce212c100b
4 changed files with 12 additions and 7 deletions

View File

@@ -87,8 +87,13 @@ bind -r L resize-pane -R 2
# window navigation
unbind n
unbind p
bind -r C-h previous-window # select previous window
bind -r C-l next-window # select next window
# bind -r C-h previous-window # select previous window
# bind -r C-l next-window # select next window
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
bind Tab last-window # move to last active window
# toggle mouse

View File

@@ -249,7 +249,7 @@ tmux_conf_copy_to_os_clipboard=false
set -g history-limit 10000
# start with mouse mode enabled
#set -g mouse on
set -g mouse on
# force Vi mode
# really you should export VISUAL or EDITOR environment variable, see manual

View File

@@ -41,7 +41,7 @@ alias ftp='noglob ftp'
alias history='noglob history'
alias locate='noglob locate'
alias rake='noglob rake'
alias rsync='noglob rsync'
# alias rsync='noglob rsync'
alias scp='noglob scp'
alias sftp='noglob sftp'

View File

@@ -78,11 +78,11 @@ function dcp() {
local arg="$(whoami) at $(date)"
fi
a || exit
a || return 1
git commit -m "$arg" || exit
git commit -m "$arg" || return 1
git push || exit
git push || return 1
}
function strip-tags() {