2013-06-25 07:57:15 +00:00
|
|
|
" ============================================================================
|
|
|
|
" File: wakatime.vim
|
2013-07-02 09:24:04 +00:00
|
|
|
" Description: Automatic time tracking for Vim.
|
2013-09-05 05:32:20 +00:00
|
|
|
" Maintainer: WakaTime <support@wakatime.com>
|
2014-03-13 00:32:05 +00:00
|
|
|
" License: BSD, see LICENSE.txt for more details.
|
2014-03-14 20:35:11 +00:00
|
|
|
" Website: https://wakatime.com/
|
2013-06-25 07:57:15 +00:00
|
|
|
" ============================================================================
|
|
|
|
|
2015-02-13 03:08:59 +00:00
|
|
|
let s:VERSION = '3.0.7'
|
2013-07-09 16:55:22 +00:00
|
|
|
|
2013-06-26 04:09:52 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" Init {{{
|
|
|
|
|
2013-07-02 09:24:04 +00:00
|
|
|
" Check Vim version
|
|
|
|
if v:version < 700
|
|
|
|
echoerr "This plugin requires vim >= 7."
|
|
|
|
finish
|
2013-06-25 07:57:15 +00:00
|
|
|
endif
|
2013-07-02 09:24:04 +00:00
|
|
|
|
|
|
|
" Only load plugin once
|
|
|
|
if exists("g:loaded_wakatime")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_wakatime = 1
|
2013-06-25 07:57:15 +00:00
|
|
|
|
2013-07-02 09:24:04 +00:00
|
|
|
" Backup & Override cpoptions
|
|
|
|
let s:old_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-06-25 07:57:15 +00:00
|
|
|
|
2013-07-09 00:09:43 +00:00
|
|
|
" To be backwards compatible, rename config file
|
|
|
|
if filereadable(expand("$HOME/.wakatime"))
|
|
|
|
exec "silent !mv" expand("$HOME/.wakatime") expand("$HOME/.wakatime.conf")
|
|
|
|
endif
|
2013-12-13 15:03:09 +00:00
|
|
|
if filereadable(expand("$HOME/.wakatime.conf"))
|
|
|
|
if !filereadable(expand("$HOME/.wakatime.cfg"))
|
|
|
|
let contents = ['[settings]'] + readfile(expand("$HOME/.wakatime.conf"), '')
|
|
|
|
call writefile(contents, expand("$HOME/.wakatime.cfg"))
|
|
|
|
call delete(expand("$HOME/.wakatime.conf"))
|
|
|
|
endif
|
|
|
|
endif
|
2013-06-26 05:02:59 +00:00
|
|
|
|
2015-02-13 03:19:40 +00:00
|
|
|
" Set default python binary location
|
|
|
|
if !exists("g:wakatime_PythonBinary")
|
|
|
|
let g:wakatime_PythonBinary = 'python'
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Set default heartbeat frequency in minutes
|
|
|
|
if !exists("g:wakatime_HeartbeatFrequency")
|
|
|
|
let g:wakatime_HeartbeatFrequency = 2
|
2013-08-12 10:30:17 +00:00
|
|
|
endif
|
|
|
|
|
2013-07-08 04:25:06 +00:00
|
|
|
" Globals
|
|
|
|
let s:plugin_directory = expand("<sfile>:p:h") . '/'
|
2015-01-20 04:36:23 +00:00
|
|
|
let s:config_file_exists = 0
|
2013-07-02 04:07:38 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" }}}
|
|
|
|
|
2013-06-26 04:09:52 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" Function Definitions {{{
|
|
|
|
|
2015-01-20 04:36:23 +00:00
|
|
|
function! s:SetupConfigFile()
|
|
|
|
if !s:config_file_exists
|
|
|
|
" Create config file if does not exist
|
|
|
|
if !filereadable(expand("$HOME/.wakatime.cfg"))
|
|
|
|
let key = input("[WakaTime] Enter your wakatime.com api key: ")
|
|
|
|
if key != ''
|
|
|
|
call writefile(['[settings]', 'debug = false', printf("api_key = %s", key), 'hidefilenames = false', 'ignore =', ' ^COMMIT_EDITMSG$', ' ^TAG_EDITMSG$'], expand("$HOME/.wakatime.cfg"))
|
|
|
|
echo "[WakaTime] Setup complete! Visit http://wakatime.com to view your logged time."
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
let s:config_file_exists = 1
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-07-02 09:24:04 +00:00
|
|
|
function! s:GetCurrentFile()
|
|
|
|
return expand("%:p")
|
|
|
|
endfunction
|
|
|
|
|
2013-08-12 10:30:17 +00:00
|
|
|
function! s:Api(targetFile, time, is_write, last)
|
2013-07-08 04:25:06 +00:00
|
|
|
let targetFile = a:targetFile
|
|
|
|
if targetFile == ''
|
2013-07-10 04:13:45 +00:00
|
|
|
let targetFile = a:last[2]
|
2013-07-08 04:25:06 +00:00
|
|
|
endif
|
|
|
|
if targetFile != ''
|
2015-02-13 03:19:40 +00:00
|
|
|
let python_bin = g:wakatime_PythonBinary
|
2014-05-29 06:14:25 +00:00
|
|
|
if has('win32') || has('win64')
|
2015-02-13 03:19:40 +00:00
|
|
|
if python_bin == 'python'
|
|
|
|
let python_bin = 'pythonw'
|
|
|
|
endif
|
2014-05-27 05:39:37 +00:00
|
|
|
endif
|
2015-03-09 22:27:37 +00:00
|
|
|
let cmd = [python_bin, '-W', 'ignore', s:plugin_directory . 'packages/wakatime/cli.py']
|
2013-07-09 16:55:22 +00:00
|
|
|
let cmd = cmd + ['--file', shellescape(targetFile)]
|
2015-01-20 04:42:03 +00:00
|
|
|
let cmd = cmd + ['--plugin', shellescape(printf('vim/%d vim-wakatime/%s', v:version, s:VERSION))]
|
2013-07-08 04:25:06 +00:00
|
|
|
if a:is_write
|
2013-07-09 16:55:22 +00:00
|
|
|
let cmd = cmd + ['--write']
|
2013-07-08 04:25:06 +00:00
|
|
|
endif
|
2013-07-09 22:34:03 +00:00
|
|
|
"let cmd = cmd + ['--verbose']
|
2014-05-29 06:14:25 +00:00
|
|
|
if has('win32') || has('win64')
|
2014-05-27 05:39:37 +00:00
|
|
|
exec 'silent !start /min cmd /c "' . join(cmd, ' ') . '"'
|
|
|
|
else
|
|
|
|
exec 'silent !' . join(cmd, ' ') . ' &'
|
|
|
|
endif
|
2013-08-12 10:30:17 +00:00
|
|
|
call s:SetLastAction(a:time, a:time, targetFile)
|
2013-07-08 04:25:06 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:GetLastAction()
|
|
|
|
if !filereadable(expand("$HOME/.wakatime.data"))
|
2013-12-16 10:07:28 +00:00
|
|
|
return [0, 0, '']
|
2013-07-08 04:25:06 +00:00
|
|
|
endif
|
2013-07-10 08:11:50 +00:00
|
|
|
let last = readfile(expand("$HOME/.wakatime.data"), '', 3)
|
|
|
|
if len(last) != 3
|
2013-12-16 10:07:28 +00:00
|
|
|
return [0, 0, '']
|
2013-07-02 09:24:04 +00:00
|
|
|
endif
|
2013-12-16 10:07:28 +00:00
|
|
|
return last
|
2013-07-08 04:25:06 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-07-10 07:55:42 +00:00
|
|
|
function! s:SetLastAction(time, last_update, targetFile)
|
2013-12-16 10:07:28 +00:00
|
|
|
call writefile([substitute(printf('%d', a:time), ',', '.', ''), substitute(printf('%d', a:last_update), ',', '.', ''), a:targetFile], expand("$HOME/.wakatime.data"))
|
2013-07-02 09:24:04 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-07-08 05:18:47 +00:00
|
|
|
function! s:GetChar()
|
2013-07-02 09:24:04 +00:00
|
|
|
let c = getchar()
|
|
|
|
if c =~ '^\d\+$'
|
|
|
|
let c = nr2char(c)
|
|
|
|
endif
|
|
|
|
return c
|
|
|
|
endfunction
|
2013-07-10 04:13:45 +00:00
|
|
|
|
|
|
|
function! s:EnoughTimePassed(now, last)
|
|
|
|
let prev = a:last[0]
|
2015-02-13 03:19:40 +00:00
|
|
|
if a:now - prev > g:wakatime_HeartbeatFrequency * 60
|
2013-07-08 04:25:06 +00:00
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
return 0
|
2013-07-02 09:24:04 +00:00
|
|
|
endfunction
|
2013-07-08 04:25:06 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" }}}
|
|
|
|
|
2013-06-26 04:09:52 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" Event Handlers {{{
|
|
|
|
|
2013-07-08 04:25:06 +00:00
|
|
|
function! s:normalAction()
|
2015-01-20 04:36:23 +00:00
|
|
|
call s:SetupConfigFile()
|
2013-07-08 04:25:06 +00:00
|
|
|
let targetFile = s:GetCurrentFile()
|
2013-12-16 10:07:28 +00:00
|
|
|
let now = localtime()
|
2013-07-08 04:25:06 +00:00
|
|
|
let last = s:GetLastAction()
|
2013-07-10 04:13:45 +00:00
|
|
|
if s:EnoughTimePassed(now, last) || targetFile != last[2]
|
2013-08-12 10:30:17 +00:00
|
|
|
call s:Api(targetFile, now, 0, last)
|
2013-07-02 09:24:04 +00:00
|
|
|
endif
|
2013-07-08 04:25:06 +00:00
|
|
|
endfunction
|
2013-07-02 09:24:04 +00:00
|
|
|
|
2013-07-08 04:25:06 +00:00
|
|
|
function! s:writeAction()
|
2013-07-10 04:13:45 +00:00
|
|
|
let targetFile = s:GetCurrentFile()
|
2013-12-16 10:07:28 +00:00
|
|
|
let now = localtime()
|
2013-07-10 04:13:45 +00:00
|
|
|
let last = s:GetLastAction()
|
2013-08-12 10:30:17 +00:00
|
|
|
call s:Api(targetFile, now, 1, last)
|
2013-07-02 09:24:04 +00:00
|
|
|
endfunction
|
2013-06-25 07:57:15 +00:00
|
|
|
|
|
|
|
" }}}
|
|
|
|
|
2013-06-26 04:09:52 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" Autocommand Events {{{
|
|
|
|
|
2013-07-02 09:24:04 +00:00
|
|
|
augroup Wakatime
|
|
|
|
autocmd!
|
2013-07-08 04:25:06 +00:00
|
|
|
autocmd BufEnter * call s:normalAction()
|
|
|
|
autocmd VimEnter * call s:normalAction()
|
|
|
|
autocmd BufWritePost * call s:writeAction()
|
|
|
|
autocmd CursorMoved,CursorMovedI * call s:normalAction()
|
2013-07-02 09:24:04 +00:00
|
|
|
augroup END
|
2013-06-25 07:57:15 +00:00
|
|
|
|
|
|
|
" }}}
|
|
|
|
|
2013-06-26 04:09:52 +00:00
|
|
|
|
2013-06-25 07:57:15 +00:00
|
|
|
" Restore cpoptions
|
|
|
|
let &cpo = s:old_cpo
|