Live data from Hacker News

One with Vim

invisibletheory.com

1–10 of 129 posts

Re: One with Vim

#2
"been around since 1991"?! while that's probably correct for vim proper, that ignores the much longer history of vi...

Re: One with Vim

#3
post #2

"been around since 1991"?! while that's probably correct for vim proper, that ignores the much longer history of vi...

you are absolutely right - fixing this now. Vi has been around since the 70s, but I used the date for vim on the post - which was dumb of me.

Re: One with Vim

#5

The 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

:e .

or

:NERDTree

Re: One with Vim

#6

The 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

:e . or :NERDTree

Fuzzy Finder is also very useful http://www.vim.org/scripts/script.php?script_id=1984

Re: One with Vim

#7

The 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

:e . or :NERDTree

I use NERDTree and it's not even remotely close to Command-T (or PeepOpen, which is pretty much the same thing).

NERDTree is great for browsing your project and managing your files, but for opening files (when you know their names) you really can't beat the speed of Command-T/PeepOpen. They're in another league.

I don't know how people work without it.

Re: One with Vim

#8

The 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

I've been using FuzzyFileFinderTextmate for a long time. I'm not sure it's still in active development, but it's worked just fine for me; is there a reason for me to switch to Command-T?

I also stick to buffers rather than tabs (for terminal/gui consistency) and use buftabs, which I quite like.

Re: One with Vim

#9
Vim is easier on the hands, but Emacs (with ido-mode) still feels better for working with multiple files:

  (length (remove-if (lambda (b) (not (buffer-file-name b))) (buffer-list)))
  42

Re: One with Vim

#10
post #9

Vim is easier on the hands, but Emacs (with ido-mode) still feels better for working with multiple files: (length (remove-if (lambda (b) (not (buffer-file-name b))) (buffer-list))) 42

There are multiple similar plugins for vim.
Post reply on HN