fork of vim-wakatime that repoints to localhost
Go to file
Alan Hamlett 3917e255a7 new vundle syntax 2017-10-04 21:25:49 -07:00
doc add version 0.1.2 2013-06-25 00:57:15 -07:00
plugin v6.0.1 2017-10-04 19:16:23 -07:00
.gitignore v2.0.5 2014-08-07 08:29:01 -07:00
AUTHORS add Maxim to authors file 2017-07-03 12:03:06 -07:00
HISTORY.rst changes for v6.0.1 2017-10-04 19:16:10 -07:00
LICENSE.txt add authors file and update license 2014-12-21 19:47:29 -06:00
README.md new vundle syntax 2017-10-04 21:25:49 -07:00

README.md

vim-wakatime

Vim Neovim MacVim gVim

Quantify your coding inside Vim.

Installation

  1. Install Vundle, the Vim plugin manager.

  2. Using Vundle:
    echo "Plugin 'wakatime/vim-wakatime'" >> ~/.vimrc && vim +PluginInstall

or using Pathogen:
cd ~/.vim/bundle && git clone git://github.com/wakatime/vim-wakatime.git

  1. Enter your api key, then press enter.

  2. Use Vim and your coding activity will be displayed on your WakaTime dashboard.

Note: WakaTime depends on Python being installed to work correctly.

Screen Shots

Project Overview

Configuring

Custom Commands:

  • :WakaTimeApiKey - change the api key saved in your ~/.wakatime.cfg
  • :WakaTimeDebugEnable - enable debug mode (may slow down Vim so disable when finished debugging)
  • :WakaTimeDebugDisable - disable debug mode
  • :WakaTimeScreenRedrawEnable - enable screen redraw to prevent artifacts
  • :WakaTimeScreenRedrawEnableAuto - redraw screen when plugin takes too long
  • :WakaTimeScreenRedrawDisable - disable screen redraw for performance

Vimrc Settings:

let g:wakatime_PythonBinary = '/usr/bin/python'

Tells the plugin to use a custom python binary. The default is to use python from your system PATH.

WakaTime Settings:

Add this line to your ~/.wakatime.cfg file to modify your screen redraw setting:

vi_redraw = enabled

Enables redrawing the screen after sending heartbeats, to prevent screen artifacts in case a key was pressed while the plugin executed. Valid values for vi_redraw are enabled, auto, and disabled. Redraw settings are ignored with Vim 8.0+ with async support.

Other WakaTime plugins also share this ~/.wakatime.cfg file. See all configs...

Troubleshooting

Run :WakaTimeDebugEnable in Vim then run this Terminal command:

tail -f ~/.wakatime.log

Enabling Debug Mode writes Vim Script errors to your Vim Status Bar and tells wakatime-cli to write verbose logs to $WAKATIME_HOME/.wakatime.log.

Debug mode can make it hard to find the real error because of all the extra logging, so also try disabling Debug Mode while tailing ~/.wakatime.log and editing files in Vim. With Debug Mode enabled, the plugin sends data synchronously so disable it when finished debugging with :WakaTimeDebugDisable.

The How to Debug Plugins guide shows how to check when coding activity was last received from Vim use the User Agents API. For more general troubleshooting info, see the wakatime-cli Troubleshooting Section.

Uninstalling

  1. Remove Plugin 'wakatime/vim-wakatime' from your .vimrc file.

  2. Run in terminal: rm ~/.wakatime.*.

  3. Run in terminal: vim +PluginClean.