Tagged Questions

4
votes
2answers
155 views

internal code-completion in vim

There's a completion type that isn't listed in the vim help files (notably: insert.txt), but which I instinctively feel the need for rather often. Let's say I have the words "Awesome" and ...
4
votes
1answer
109 views

Vim: Start Regular Expression match from Beginning of Visual Selection

I'm trying to use the vim plugin, Tabular, to align some misformatted CSS code. Unfortunately, I can't quite seem to grasp how to start the match at the beginning of a visual selection in Vim. Here's ...
4
votes
1answer
124 views

Vim: most efficient way to test for pattern at cursor?

I have a problem with matching text in Vim buffers. I have a specific form of dates in my text and often need to test whether the text at cursor matches the date pattern. Here are some examples of ...
3
votes
4answers
615 views

Substituting zero-width match in vim script

I have written this script that replaces many spaces around the cursor with one space. This however doesn't work when I use it with no spaces around the cursor. It seems to me that Vim doesn't replace ...
2
votes
1answer
46 views

call a function in vim when opening a file with a specific name ignoring directories (regex as a variable)

i'm trying to make vim check for the filename of the file it's about to open if @%== .\+"notes.tex" highlight done ctermbg=blue ctermfg=white guibg=#292960 guifg=#AAAAAA match done ...
1
vote
1answer
52 views

How to align the functionality of SUBSTITUTE() to the that of Vim's :substitute command for a given regex?

I am trying to deconstruct why this does not work in my (g)Vim console: :echo substitute("2321||aaaa|vvvv|334|mmmmm","\([0-9]\+\)\(||.*\)$","\1","g") ... but when the cursor is on the line with the ...
1
vote
4answers
289 views

Match parenthesised block using regular expressions in vim

I'm trying to match the contents that belong between a certain ( and its matching ) as found by vim when using the motion %. More specifically, I'm looking for a regex that looks like this ...
1
vote
2answers
547 views

regex in vimscript

let test = 'a href="http://www.google.com">www.google.com</a;' in vimscript, how can i get http://www.google.com out of this using a regexp, and store it in another variable? i can't seem to ...
1
vote
1answer
128 views

How do I get the length of a regex match in vim?

If I want to get the length of each match within the parentheses in the following regex, how do I do it?: ^\(\-\+\s\)\+ I'm trying to modify the width of columns in a buffer with data that is laid ...
1
vote
2answers
573 views

if match(g:possibilities, “using backreferences after the regex in vim\(script\)?”)

I'd like to be able to, say, check the value of $1 inside the if block, to get the first backreference. However vimscript is not perl. Is there some way to do this? I'm aware of the possibility of ...
0
votes
1answer
40 views

Vim equivalent of `preg_quote()` and `quotemeta`

In vimscript I can regexp-match stuff with matchstr() and matchlist() But what if I have to append to the pattern a user-provided string? How can I quote meta characters in that?