Search Results

25
votes

Is it worth investing time in learning to use emacs?

[Disclaimer: personally, I prefer Vim. Disclaimer disclaimer: read on.] Vim excels in the small: by making motion and action separate concepts and providing facilities for complex …
5
votes

Tabs and spaces in vim

all I want is the autoindented line to have exactly the same indentation characters as the previous line. …
6
votes

Why is \r a newline for vim?

:help NL-used-for-Nul Technical detail: <Nul> …
43
votes

What are your favorite Vim tricks?

da< Delete the HTML tag the cursor is currently inside of – the whole tag, regardless of just where the cursor is. ci" …
4
votes

How do I set the UI language in vim?

As Ken noted, you want the :language command. Note that …
0
votes

Vim auto-generate ctags

Edit: A solution very much along the lines of the following has been posted as the AutoTag vim scrip …
1
vote

Vim Dvorak keybindings (rebindings :)

Vim ships with an extensive Dvorak script, but unfortunately it’s not directly source-able, since the file includes a few lines of instructions and another script that undoes its effec …
2
votes

Vim 80 column layout concerns

You can try this: au BufWinEnter * if &textwidth > 8 \ | let w:m1=matchadd('MatchParen', printf('\%%<%dv.\%%>%dv', &textwidth+1, &textwidth-8), -1) \ | let w:m2 …
1
vote

How do I insert a linebreak where the cursor is without entering into insert mode in Vim?

Vim will automatically kill any whitespace to the right of the cursor if you break a line in two while autoindent (or any other indentation aid) is enabled. If you do not want …
1
vote

Scripting common tasks in Vim

I use q/@ to record/replay a macro quite frequently. The next step up is trying to write in something like 3 or fewer ex commands. If something so complex …
2
votes

In Vim, what is the simplest way to join all lines in a file into a single line?

I’m surprised no one even mentioned the other way: :%s/\n/ / I am equally surprised that no one pointed out that the range 1,$ has a shorthand that’s …