Friendly Text Editor /fte/

I'm trying to learn vim, (finished vimtutor), and I figured since a lot of Jow Forums uses these type of editors, a friendly tutorial thread might be fun.
One question I have in regard to vim is, outside of the baseline tutorial, what do you recommend learning how to use first?

Attached: vimemacs.jpg (569x400, 82K)

Other urls found in this thread:

pragprog.com/book/dnvim2/practical-vim-second-edition
learnvimscriptthehardway.stevelosh.com/
blog.carbonfive.com/2011/10/17/vim-text-objects-the-definitive-guide/
twitter.com/NSFWRedditVideo

Why aren't you using GNU nano?

Attached: GNU nano.png (596x366, 40K)

pragprog.com/book/dnvim2/practical-vim-second-edition
learnvimscriptthehardway.stevelosh.com/

Because you can't flex with it

I'm still a vim newfag but these vimrc settings are necessary in my mind

set tabstop=4 softtabstop=0 noexpandtab shiftwidth=4

Attached: 6.jpg (1000x800, 57K)

Notepad++

how do vim people live without org-mode?

I like to be able to comment out a block of code easily, by using visual to select it, then these to add the comment symbol; put these in your .vimrc

vmap # :s/^/#/
vmap r :s/^[;#]//

vmap ;; :s/^/;/


the first one adds an "#" to each line, like a bash script comments
the third one adds an ";" to each line, like AVR assembler comments

the second one removes those symbols to re-enable that code

I dont document anything lmao

Any other vimrc tips?