Remove g:VimwikiLog and the timing stuff

For profiling, there is Vim's :profile command
This commit is contained in:
EinfachToll
2015-12-07 12:29:25 +01:00
parent 2a70e1517e
commit 9be96884ba
6 changed files with 1 additions and 50 deletions

View File

@ -32,11 +32,6 @@ function! vimwiki#u#is_macos()
return os == 'Darwin' || os == 'Mac'
endfunction
function! vimwiki#u#time(starttime) "{{{
" measure the elapsed time and cut away miliseconds and smaller
return matchstr(reltimestr(reltime(a:starttime)),'\d\+\(\.\d\d\)\=')
endfunction "}}}
function! vimwiki#u#count_first_sym(line) "{{{
let first_sym = matchstr(a:line, '\S')
return len(matchstr(a:line, first_sym.'\+'))