Live data from Hacker News

Vimcasts

vimcasts.org

21–30 of 43 posts

Re: Vimcasts

#21

Earlier quoted context omitted.

Hi Drew - I'm trying to find an email to contact you but cannot, I'll try here then: I'd like to add vimcasts to learnivore.com, is it possible ?

You'll get me with drew at the domain name. Sorry that's not more obvious.

thanks! For the others, it will be added on learnivore end of week or sooner.

Re: Vimcasts

#24
post #14

The site is beautifully designed. Minimal, simple and effective. just like vim :)

I'll pay vim many compliments, "minimal" is not one of them.

What i like about vim's UI is that it's very reduced to a minimum. New users have no idea how powerful it is.

Re: Vimcasts

#25
This is a good example of how to do a simple tutorial.

The tutorial video itself is well done.

Following the video is a concise recap of what was covered in the video.

At the end is a short, relevant list of "learn more" resources.

Well done.

Re: Vimcasts

#26
post #24

Earlier quoted context omitted.

I'll pay vim many compliments, "minimal" is not one of them.

What i like about vim's UI is that it's very reduced to a minimum. New users have no idea how powerful it is.

Come to the Dark Side. We have buffers.

Re: Vimcasts

#27
Awesome! I've been trying to immerse myself in Vim lately, so I'm excited to check these out.

Re: Vimcasts

#28
post #24

Earlier quoted context omitted.

What i like about vim's UI is that it's very reduced to a minimum. New users have no idea how powerful it is.

Come to the Dark Side. We have buffers.

Wait, which dark side? (or possibly, what is the light side?) Both vim and emacs have buffers, including special ones...

Re: Vimcasts

#29
post #24

Earlier quoted context omitted.

What i like about vim's UI is that it's very reduced to a minimum. New users have no idea how powerful it is.

Come to the Dark Side. We have buffers.

I use the arg list. I looked into buffers a while back, but they seemed overcomplex for what I need (same with windows). Checking the vim help just now, buffers and arglist seem (mostly) equivalent.

I'm curious: do you find there's specific advantages of buffers over the arglist? And, do you use buffers as well as, or instead of, the arglist?

The only problem I find is that if I start two vims in different xterms, sometimes I'll want to paste between them - so I need to use the system clipboard, instead of vim.

Re: Vimcasts

#30
post #29

Earlier quoted context omitted.

Come to the Dark Side. We have buffers.

I use the arg list. I looked into buffers a while back, but they seemed overcomplex for what I need (same with windows). Checking the vim help just now, buffers and arglist seem (mostly) equivalent. I'm curious: do you find there's specific advantages of buffers over the arglist? And, do you use buffers as well as, or instead of, the arglist? The only problem I find is that if I start two vims in different xterms, so…

Ah, my mistake. I meant registers, not buffers.

:help registers

As to your "I'm curious" question, I use both. Mostly arglist, and I resort to buffers when the arglist has gone squirrely (editing an additional file after starting with a number of files, e.g.).

For example, edit a small number of files (vi *).

:files will show you the list of files.

Repeating :n will take you through each file.

:e newfile to create a new file

:files will show you the list, with newfile at the end.

:rew to rewind the list

:n will get you to the last file on the original list, but not to newfile.

:bn will then get you to newfile.

Post reply on HN