Vim is my primary editor but I think the only really good part of vim is the keyboard navigation. The rest could be much better. For example, to this day I haven't figured out an easy, built-in way to copy from one vim window to another. I'd love to have some features of other editors have but the key bindings always hold me back.
One with Vim
21–30 of 129 posts
Re: One with Vim
#22Vim is my primary editor but I think the only really good part of vim is the keyboard navigation. The rest could be much better. For example, to this day I haven't figured out an easy, built-in way to copy from one vim window to another. I'd love to have some features of other editors have but the key bindings always hold me back.
com -range YY :,w! ~/tmp/cnp.txt
com PP :r ~/tmp/cnp.txt
Then :YY, :PP as appropriateRe: One with Vim
#23The Command-T plugin [1] was a big help in switching from TextMate to vim. I have no idea how anyone can be productive in vim without it (assuming you're working on a multi-file project). 1. https://wincent.com/products/command-t
Re: One with Vim
#24Re: One with Vim
#25I've used Vim successfully on Windows/Mac/Linux and you can customized it as you wish. Interesting post so 1+. As a side note the font used for the article does not render well on my Chrome browser. What are you using ? :)
Re: One with Vim
#26I've used Vim successfully on Windows/Mac/Linux and you can customized it as you wish. Interesting post so 1+. As a side note the font used for the article does not render well on my Chrome browser. What are you using ? :)
really? Damn, it should. It's Meta Pro served by Typekit. Are you on a Mac?
Re: One with Vim
#27edit: links...
http://en.wikipedia.org/wiki/Nvi
Re: One with Vim
#28Vim is my primary editor but I think the only really good part of vim is the keyboard navigation. The rest could be much better. For example, to this day I haven't figured out an easy, built-in way to copy from one vim window to another. I'd love to have some features of other editors have but the key bindings always hold me back.
Re: One with Vim
#29Vim is my primary editor but I think the only really good part of vim is the keyboard navigation. The rest could be much better. For example, to this day I haven't figured out an easy, built-in way to copy from one vim window to another. I'd love to have some features of other editors have but the key bindings always hold me back.
I use a simple hack in my .vimrc com -range YY : , w! ~/tmp/cnp.txt com PP :r ~/tmp/cnp.txt Then :YY, :PP as appropriate
Re: One with Vim
#30Vim is my primary editor but I think the only really good part of vim is the keyboard navigation. The rest could be much better. For example, to this day I haven't figured out an easy, built-in way to copy from one vim window to another. I'd love to have some features of other editors have but the key bindings always hold me back.