Joined June 2011
·
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,943 Total ProTip Views
Altruist
Increase developer well-being by sharing at least 20 open source projects
Raven
Have at least one original repo where some form of shell script is the dominant language
Velociraptor
Have at least one original repo where Perl is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Charity
Fork and commit to someone's open source project in need
Python 3
Have at least three original repos where Python is the dominant language
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Thanks for sharing this tip. I didn't know this module either. I've been looking for that for a while.