So I have a text file like this:
Item a: <total>
Subitem: 10 min
Subitem 2: 20 min
I'd like to replace <total> with the total of 10 and 20. Right now I'm doing it with the following functions:
let g:S = 0 "result in global variable S
function! Sum(number)
let g:S = g:S + a:number
return a:number
endfunction
function! SumSelection()
let g:S=0
'<,'>s/\d\+/\=Sum(submatch(0))/g
echo g:S
endfunction
vnoremap <s-e> call SumSelection()<cr>
Sum gets the sum of numbers passed in, SumSelection calls sum over all the numbers in selected lines, and (supposedly) Shift+e calls SumSelection in visual mode (or whatever you choose to call it.)
Problem is, when I hit Shift+e when I have some lines selected, instead of :call SumSelection() I really get :'<,'>call SumSelection() which means the function gets called once per selected line. No good, right? So as far as I can tell there's no way around this. What can I do to get the function to:
- be only called once
- maybe total these in a more efficient way