:r!awk '{sum+=$6} END {print "Total: "sum}' %
説明:
:r ........... read (put result in this file)
! ............ external command
awk .......... external tool
{sum+=$6} .... sixth field (awk considers spaces as field separator)
END .......... at the end
{print "Total: "sum} --> string "Total: " plus your result
% ............ current file
私はここで機能する機能を試しています:
" This function requires you select the numbers
fun! SumVis()
try
let l:a_save = @a
norm! gv"ay
let @a = substitute(@a,'[^0-9. ]','+','g')
exec "norm! '>o"
exec "norm! iTotal \<c-r>=\<c-r>a\<cr>"
finally
let @a = l:a_save
endtry
endfun
vnoremap <leader>s :<C-u>call SumVis()<cr>
含まれている上記のマップを使用して、関数をロードした後に行う必要があるのは、合計したい数字を選択<leader>s
し、選択したエリアを合計することだけです。
機能説明:
try/finally/endtry
extructureを使用してエラーをキャプチャします。
let l:a_save = @a .......... if whe have register 'a' we save it temporarelly
norm! gv"a ................................... gv --> reselects and captures selection to 'register a'
let @a = substitute(@a,'[^0-9. ]','+','g') .... removes all but numbers, dots and spaces from 'register a' and puts '+' among the numbers
exec "norm! '>o" ............................. opens new line bellow selection. see :h '>
exec "norm! iTotal: \<c-r>=\<c-r>a\<cr>" ...... insert "Total: " plus 'expression register result
let @a = l:a_save ............................. restores original 'a' register content
この機能を試してみたい場合は、次の操作を行ってください。ブラウザでこの機能をコピーし、vimで:@+
このコマンドを実行すると、:call SumVis()
正常に使用できるようになります。
:@+ ......... loads `+` register making the function avaiable
ctrl+ vで視覚的なブロック選択を行い、選択を解除し、最後に関数を呼び出す必要があります。または、提案されたマップを使用して、計算する前にそれ自体で選択を削除することができます。