Mapped C-Tab to function like alt-tab

This commit is contained in:
jond
2017-09-24 17:54:32 -05:00
parent 0b5286026c
commit 9d59533e47
5 changed files with 12 additions and 2 deletions

View File

@@ -29,5 +29,8 @@ set -g mode-keys vi
# enable mouse control (click wind, panes, resizable panes) - as of tmux 2.1 # enable mouse control (click wind, panes, resizable panes) - as of tmux 2.1
# copy/paste: shift+left click to highlight, then shift+middle to past # copy/paste: shift+left click to highlight, then shift+middle to past
if-shell '[ $(echo "$(tmux -V | cut -d" " -f2) >= 2.1" | bc) -eq 1 ]' \ if-shell '[ $(echo "$(tmux -V | cut -d" " -f2) >= 2.1" | bc) -eq 1 ]' \
'set -g mouse on; set -g mouse-utf8 on' \ 'set -g mouse on' \
'set -g mode-mouse on; set -g mouse-resize-pane on; set -g mouse-select-pane on; set -g mouse-select-window on' 'set -g mode-mouse on; set -g mouse-resize-pane on; set -g mouse-select-pane on; set -g mouse-select-window on'
bind-key Tab last-window
bind-key BTab previous-window

5
vim/.vim/.netrwhist Normal file
View File

@@ -0,0 +1,5 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhist_cnt =3
let g:netrw_dirhist_1='/home/jon'
let g:netrw_dirhist_2='/home/jon/.gnome'
let g:netrw_dirhist_3='/home/jon'

Submodule vim/.vim/bundle/vim-airline updated: d8eb12845f...e9a7a12d9e

Submodule vim/.vim/bundle/vim-surround added at e49d6c2459

View File

@@ -78,6 +78,7 @@ Plugin 'vim-airline/vim-airline-themes'
"Plugin 'klen/python-mode' "Plugin 'klen/python-mode'
Plugin 'itchyny/calendar.vim' Plugin 'itchyny/calendar.vim'
Plugin 'davidhalter/jedi-vim' Plugin 'davidhalter/jedi-vim'
Plugin 'tpope/vim-surround'
call vundle#end() " required call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required