I'd like to automatically take a visually selected block of text, such as 51-100, and have it expanded into 51,52,53,...,99,100.

Is there an easy way to do this in vimscript?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Let me propose the following implementation.

vnoremap <silent> <leader># :<c-u>call ExpandRange()<cr>
function! ExpandRange()
    norm! gvy
    let n = matchlist(@", '\(\d\+\)\s*-\s*\(\d\+\)')[1:2]
    if len(n) != 2 || +n[0] > +n[1]
        return
    end
    exe 'norm! gvc' . join(range(n[0], n[1]), ',')
endfunction

If it is guaranteed by the range notation that there is no whitespace around numbers, the second statement of ExpandRange() can be simplified by using the split() function,

    let n = split(@", '-')

Note that the text denoting a range is put into the unnamed register. If it is preferable to leave registers untouched, modify ExpandRange() to use a named register, saving its state beforehand and restoring it at the end.

function! ExpandRange()
    let [qr, qt] = [getreg('"'), getregtype('"')]
    norm! gvy
    let n = matchlist(@", '\(\d\+\)\s*-\s*\(\d\+\)')[1:2]
    call setreg('"', qr, qt)
    if len(n) != 2 || +n[0] > +n[1]
        return
    end
    exe 'norm! gv"_c' . join(range(n[0], n[1]), ',')
endfunction
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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