Add window jump keybind to vimrc
This commit is contained in:
parent
bce458cdce
commit
8669c9a0df
|
@ -20,3 +20,11 @@ syntax on
|
||||||
execute pathogen#infect()
|
execute pathogen#infect()
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
|
" Custom Keybindings
|
||||||
|
" nnoremap <NEW> <OLD>
|
||||||
|
"" nnoremap <C-e> <C-w>
|
||||||
|
|
||||||
|
" Set window jumping to custom binding
|
||||||
|
" default Ctrl-W conflict - closes browser tabs
|
||||||
|
nnoremap <C-e> <C-w>
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,16 @@ Plugin Settings:
|
||||||
- Clang_complete vim plugin has been installed and .vimrc configured for its use.
|
- Clang_complete vim plugin has been installed and .vimrc configured for its use.
|
||||||
- Code-completion is enabled with default clang_complete settings
|
- Code-completion is enabled with default clang_complete settings
|
||||||
-- https://github.com/xavierd/clang_complete
|
-- https://github.com/xavierd/clang_complete
|
||||||
|
--If you have issues with Clang_complete library linking / loading, check the directory / commands below -
|
||||||
|
cd /usr/lib/x86_64-unknown-linux
|
||||||
|
ln -s libclang.so.1 libclang.so
|
||||||
|
|
||||||
|
|
||||||
- Supertab vim plugin has been installed and .vimrc configured for its use.
|
- Supertab vim plugin has been installed and .vimrc configured for its use.
|
||||||
- Allows the use of TAB to enable code-completion context menu
|
- Allows the use of TAB to enable code-completion context menu
|
||||||
-- https://github.com/ervandew/supertab
|
-- https://github.com/ervandew/supertab
|
||||||
|
|
||||||
|
- Custom Keybindings
|
||||||
|
- The keybind (Ctrl-e <ARROW KEY>) allows switching between split vim windows
|
||||||
|
-- Ctrl-w is the default setting, which closes tabbed shells on Chrome OS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue