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 the formatted dates, which may be preceded or followed by other text on the same line:

<2011-10-13 Wed>
[2011-10-13 Wed]
<2011-10-13 Wed +1>
[2011-10-13 Wed +1]
<2011-10-13 Wed 10:30>
[2011-10-13 Wed 10:30]
<2011-10-13 Wed 10:30-11:30>
[2011-10-13 Wed 10:30-11:30]
<2011-10-13 Wed 10:30 +1w>
[2011-10-13 Wed 10:30 +1w]

I have some code that tests at cursor position to see whether cursor is on a date, and if so what the date text is, but what I'm doing seems kind of clumsy.

Any comments on what most efficient function for returning the date under cursor (or empty string if not on a date)? (I would post my code but will refrain for now both (1) out of embarrassment and (2) to avoid polluting your minds by suggesting a particular approach to the problem.)

Thanks for any tips.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
function! CheckDate(expr)
    let date_pattern = '[\[<]'      " The first < or [
                \.'\d\{4\}-\d\{2\}-\d\{2\}' " YYYY-MM-DD
                \.' \(Mon\|Tue\|Wed\|Thu\|Fri\|Sat\|Sun\)' " Week day
                \.'\( \d\{2\}:\d\{2\}\(-\d\{2\}:\d\{2\}\)\?\)\?'
                                    " Optional time or range
                \.'\( +\dw\?\)\?'   " Optional + digit with optional 'w'
                \.'\([\]>]\)'     " The closing > or ]
    return match(a:expr, date_pattern) != -1
endfunction

function! IsOverDate()
    call setreg('a','')
    call setreg('b','')
    normal! "aya>
    let expr1 = getreg('a')
    normal! "bya]
    let expr2 = getreg('b')
    if CheckDate(expr1)
        return expr1
    elseif CheckDate(expr2)
        return expr2
    endif
    return ''
endfunction

The function IsOverDate() clears the registers a and b and stores in the respective registers the text under the cursor which is inside < and > and < and >, including the brackets. Then, it gets the value from the registers a and b and sends it to the function CheckDate() which checks if the expression matches the date pattern (I have based myself in your samples and made some assumptions to build the pattern).

The CheckDate() function returns true only if the expression matches the date pattern. The function IsOverDate() returns the date under the cursor (with the brackets) or an empty string if the cursor is not over a date.

I hope it suits.

link|improve this answer
freitass -- Thanks, much better than my method. I think the key thing that helps me is yanking into a register using the ya> or ya] commands. I was using clunkier way of getting the text. – Herbert Sitz Jun 8 '11 at 17:28
You are welcome! Please, 'check' the answer to express your gratitude. Thanks ;) – freitass Jun 8 '11 at 18:48
freitass -- Thanks, done. Turns out a found a second spot where I'd done this in my code that was closer to your method. I (for some reason) used vi< and then "ay instead of yanking directly. Plus yanking with the delimiters as you did (i.e., ya<) makes things a bit easier for me so yours is welcome part of helping me get things cleaned up. – Herbert Sitz Jun 9 '11 at 6:20
Including the brackets wasn't intentional, just an option. I'm glad it worked for you! =) – freitass Jun 9 '11 at 11:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.