show/hide this revision's text 2 change <code> to <pre>

So I've written:

func CountWords()
    exe "normal g\"
    let words = substitute(v:statusmsg, "^.Word ^.*Word [^ ]* of ", "", "")
    let words = substitute(words, ";.*", "", "")
    return words
endfunc

But it prints out info to the statusbar, so I don't think it will be suitable for your use-case. It's very fast, though!

show/hide this revision's text 1

So I've written:

func CountWords() exe "normal g\" let words = substitute(v:statusmsg, "^.Word [^ ] of ", "", "") let words = substitute(words, ";.*", "", "") return words endfunc

But it prints out info to the statusbar, so I don't think it will be suitable for your use-case. It's very fast, though!