Joined June 2011
·

Taurus Olson

The scientist
·
France
·
·
·

Thanks for sharing this tip. I didn't know this module either. I've been looking for that for a while.

Posted to Vim window resizing ala tmux over 1 year ago

I don't think TinyKeymap is necessary to easily resize windows and move around the splits. I use simple mappings:

" Resizing windows
nnoremap <C-up> <C-W>+
nnoremap <C-down> <C-W>-
nnoremap <C-left> <C-W><
nnoremap <C-right> <C-W>>

" Moving around splits
nnoremap <C-J> <C-W>j
nnoremap <C-K> <C-W>k
nnoremap <C-L> <C-W>l
nnoremap <C-H> <C-W>h

" Closing windows
nnoremap <C-C>l <C-W>l:q<CR>
nnoremap <C-C>h <C-W>h:q<CR>
nnoremap <C-C>j <C-W>j:q<CR>
nnoremap <C-C>k <C-W>k:q<CR>
Posted to Use backspace in vim over 1 year ago

Awesome! I've just added these mappings to my vimrc and I think they're going to change the way I use tags.

Posted to A friendly door opener over 1 year ago

De très bons conseils que je vais essayer de mettre en application.

Achievements
126 Karma
4,811 Total ProTip Views