Search Results

3
votes

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

Cryptic way: qqqqqJ@qq@q (the first three q's clear the q register, the qqJ@qq records a macro to the q registe …
9
votes

How to avoid extra brackets from appearing while I paste into Vim

You want the 'paste' option; set it with :set paste. It disables insert mode mappings, abbreviations, and other autoformatting options. The other thing is that the …
2
votes

Using vim to get filename into files

How about :g/^/pu!% :g/^/j to insert the filename at the beginning of each line in the current file. To run this over many files, look into argdo or …
3
votes

How do I yank all matching lines into one buffer?

:help registers :help quote_alpha Specify a capital letter as the register name in order to append to it, like :yank A. …
0
votes

Vim go to last edited line

I use CTRL-O and CTRL-I to jump back and forth between recent points in files. It also goes through certain motion commands, but I find it usually takes me back to where I was …
1
vote

Vim: good way to setup makeprg=xcodebuild ?

I'd say ftplugin, it's very easy. Write this in .vim/ftplugin/objc.vim: set makeprg=xcodebuild\ -activetarget\ -activeconfiguration Also, …