Warning: learning Vim makes you look for Vim like commands in any program you interact with using the keyboard. Everything else will be frustrating.
Efficient Editing With vim
21–30 of 125 posts
Re: Efficient Editing With vim
#22Blockwise selection mode is available in almost every Windows editor I use - from the Delphi IDE, Visual Studio, even to Notepad2, Shift+Alt does block selection, or alternatively Alt + mouse selection.
Re: Efficient Editing With vim
#23Warning: learning Vim makes you look for Vim like commands in any program you interact with using the keyboard. Everything else will be frustrating.
I would kill for GMail to add vim-like text editing.
Re: Efficient Editing With vim
#24Re: Efficient Editing With vim
#25Re: Efficient Editing With vim
#26Nooooo all of the secrets of our vim cult revealed in one easy-to-read document! Vim is hard, people! Trust me. You're not smart enough to use it. :-P
{edit} not to start a flame war.. to each their own {/edit}
Re: Efficient Editing With vim
#27Re: Efficient Editing With vim
#28Warning: learning Vim makes you look for Vim like commands in any program you interact with using the keyboard. Everything else will be frustrating.
By force of habit, when I wanted to close an IM window, I have typed :q Instead of switching to the mouse and hitting the "x". Then I had to explain to the person that I wasn't sticking my tongue out at them.
Re: Efficient Editing With vim
#29Amazingly, this is the first I've heard of fx/tx/Fx. How ridiculously awesome.
This is especially powerful when trying to move small chunks of code around. Say you have something like document.getElementById('asweetid') and you want to grab just the id for use elsewhere. In command mode pressing f' will move your cursor to the quote, yf' will put 'asweetid' into your yank register and a p anywhere else will paste it. I also make heavy use of ctx where x is a character on a line that I want to r…
Re: Efficient Editing With vim
#30I think it's the first time that I want to install vim to try it. As a Windows user, I always found NotePad++ and other text editor an easier choice but I can now see some powerfull utilities to vim now. Very clear article.
(I'm just throwing tips in comments where I see opportunities to help people who find any of the same niggles I've had over the years.) Users who want to run Windows vim with no titlebar, create a file _vimrc in your base vim directory (on my windows desktop it's C:\Program Files\Vim). In this, put this line: set guioptions-=T
:help guioptions