Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c301/gtm-emacs-plugin
Plugin for the Emacs editor to be used with the Git Time Metric platform.
https://github.com/c301/gtm-emacs-plugin
emacs emacs-lisp emacs-packages time-tracker
Last synced: about 2 months ago
JSON representation
Plugin for the Emacs editor to be used with the Git Time Metric platform.
- Host: GitHub
- URL: https://github.com/c301/gtm-emacs-plugin
- Owner: c301
- License: mit
- Created: 2018-11-05T16:11:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-16T20:11:46.000Z (about 6 years ago)
- Last Synced: 2024-08-05T06:04:31.314Z (6 months ago)
- Topics: emacs, emacs-lisp, emacs-packages, time-tracker
- Language: Emacs Lisp
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-time-metric
Plugin for the Emacs editor to be used with the [Git Time Metric](https://github.com/git-time-metric/gtm) platform.## Usage
`M-x git-time-metric-record`To automatically record time after saving:
(Choose depending on your favorite mode.)
```
(eval-after-load 'js-mode
'(add-hook 'js-mode-hook (lambda () (add-hook 'after-save-hook 'git-time-metric-record))))(eval-after-load 'js2-mode
'(add-hook 'js-mode-hook (lambda () (add-hook 'after-save-hook 'git-time-metric-record))))
```or track all your files
```
(add-hook 'after-save-hook 'git-time-metric-record)
```