Interactive Vim tutorial
21–30 of 230 posts
Re: Interactive Vim tutorial
#22Guess I'll need to look at the source here later on to find out.
Re: Interactive Vim tutorial
#23Looking at the TOC, its missing cut/copy and paste, which is pretty important for any text editor
cut: x,d,c,s
copy: y
paste: p
different variations for different use cases, can be combined with movement commands, can be repeated, etc
Re: Interactive Vim tutorial
#24Re: Interactive Vim tutorial
#25Re: Interactive Vim tutorial
#26I started going through it, and unfortunately it takes control away from you way too often. I want to be able to toy around with the concepts after I learn them. I'd still recommend `vimtutor`.
I remember reading this beautiful essay Seven habits of effective text editing by Bram Moolenaar, the main author of Vim.
Re: Interactive Vim tutorial
#27Earlier quoted context omitted.
It's true, but since vim is a bit old, copy/pasting can be a bit awkward due to having an internal clipboard with the buffer and not using the system's clipboard. I wouldn't put that in a beginner tutorial (at least the system clipboard copying/pasting).
Vim has system clipboard support with the `+` and `*` registers.
Re: Interactive Vim tutorial
#28Now I wonder if there's a js library which makes a textfield behave like VIM... Guess I'll need to look at the source here later on to find out.
Re: Interactive Vim tutorial
#29Now I wonder if there's a js library which makes a textfield behave like VIM... Guess I'll need to look at the source here later on to find out.
Re: Interactive Vim tutorial
#30I started going through it, and unfortunately it takes control away from you way too often. I want to be able to toy around with the concepts after I learn them. I'd still recommend `vimtutor`.
'vim adventures' also seems fun, but it's not quite the same (for me) without the context of actually navigating a text document.