1
vote
2answers
81 views

VIM script to remove Ghost newlines

Is there any way using either Vim scripting or search/replace to remove ghost newlines? I have come across times when I have to edit files that other developers using crappy software have left double ...
4
votes
3answers
456 views

Can I execute a MySQL query from Vim visual selection with output in a new buffer

Given a file which consists of multiple line MySQL queries, eg SELECT foo, bar, etc FROM blah WHERE something or other LIMIT etc Is there any way I can visually select a query in Vim, pipe it ...
1
vote
3answers
449 views

No more messing up whitespace in VIM

I have an BufWritePre hook added to my .vimrc that trims trailing whitespace before a buffer is saved. This is very convenient for me when editing my own code or that of others who also have a policy ...
1
vote
3answers
541 views

custom vim syntax highlighting scripts— why do they work in Windows but not Linux?

I have written a vim script for highlighting the syntax of a proprietary query language. It works fine on my Windows 7 machine running gvim 7.3, but it refuses to work on Linux (my test box is CentOS ...
2
votes
1answer
156 views

move cursor to next line after input from filter command in vim

In vim I filter, say the current single line, using !! through a Unix command. To achieve this I defined the following shortcut in .vimrc :map <Enter> !!mycommand<CR>:,+1<CR> ...
3
votes
1answer
120 views

vim imap trouble for automatically closing quotations

I managed to get auto closing braces and parentheses right: imap { {<return><return>}<Esc>kcc imap ( ()<Esc>i However, quotation can't be written like parentheses. If I ...
1
vote
4answers
621 views

How to get a list of files that match some pattern?

How to get a list of files that match some pattern if filenames may contain \n character? Update: I want solution in pure vimscript, so that it will depend on nothing but vim. Update2: Expected ...