https://github.com/dacap/keyfreq
Track Emacs commands frequency
https://github.com/dacap/keyfreq
Last synced: 5 months ago
JSON representation
Track Emacs commands frequency
- Host: GitHub
- URL: https://github.com/dacap/keyfreq
- Owner: dacap
- Created: 2012-03-01T00:10:33.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2023-11-07T21:25:44.000Z (over 2 years ago)
- Last Synced: 2025-10-12T12:55:43.213Z (8 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 35.2 KB
- Stars: 336
- Watchers: 5
- Forks: 24
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
HOW TO USE IT?
==============
Include the following lines in your `.emacs` file:
(require 'keyfreq)
(keyfreq-mode 1)
(keyfreq-autosave-mode 1)
And use `keyfreq-show` to see how many times you used a command.
How to exclude commands?
========================
(setq keyfreq-excluded-commands
'(self-insert-command
forward-char
backward-char
previous-line
next-line))