1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-25 17:31:04 -08:00
Commit graph

488 commits

Author SHA1 Message Date
justbur
bfc5c38b6d Add third-party support section to readme 2016-04-26 09:18:20 -04:00
justbur
5284e904cc Add support for god-mode
Needs to be explicitly activated by calling
(which-key-enable-god-mode-support)
2016-04-26 09:07:12 -04:00
justbur
d572f37f21 Bump version 2016-04-19 08:15:23 -04:00
justbur
38762c3f90 Use new history var for keymap selection 2016-04-19 08:14:34 -04:00
justbur
a45a4248ca Bump version 2016-04-17 16:58:15 -04:00
justbur
77a559ed31 Explicitly initialize variable-name-history
See #110
2016-04-17 16:57:26 -04:00
justbur
e7ce315c37 Bump version 2016-04-17 16:37:26 -04:00
justbur
48cbf48d68 Declare variable-name-history
Fixes #110
2016-04-17 16:34:45 -04:00
justbur
6ac8c56b24 Bump version 2016-04-10 15:07:15 -04:00
justbur
d0075fbd74 Support key ranges below top level 2016-04-10 15:05:02 -04:00
justbur
2fef1f73c4 Add badge 2016-04-06 13:53:58 -04:00
justbur
c77d75fe9d Trigger travis 2016-04-05 10:12:04 -04:00
justbur
97c7ab1ba1 Set up travis 2016-04-05 10:09:59 -04:00
justbur
060c8fe0b1 Bump version 2016-04-05 10:06:45 -04:00
justbur
07d649e077 Fix problem where prefix-title-alist was not updated 2016-04-05 10:05:38 -04:00
justbur
001a458fc6 Fix docstring typo 2016-04-05 10:05:15 -04:00
justbur
b986161025 Add tests 2016-04-05 10:04:54 -04:00
justbur
4800f33946 Bump version 2016-04-05 09:39:20 -04:00
justbur
20032f52c7 Fix bug in declare-prefixes-for-mode
Fixes #109
2016-04-05 09:36:43 -04:00
justbur
fe56015cb1 Fix key-chord problem
See the note in which-key--update
2016-03-31 16:13:06 -04:00
justbur
bf4c7d8559 Support key-chord
Fixes #108
2016-03-31 10:55:15 -04:00
justbur
3150e7d9a4 Version 1.0 2016-03-21 22:05:26 -04:00
justbur
a571ba2338 Cleanup for 1.0 release 2016-03-21 22:04:53 -04:00
justbur
23a01c9fc0 Make show-standard-help narrow to prefix
This is what describe-prefix-bindings does and it should be consistent.
2016-03-17 13:06:53 -04:00
justbur
9df87e6e36 Shorten lighter name 2016-03-14 07:27:33 -04:00
Will S. Medrano
91ab13ee39 made minor mode lighter customizable 2016-03-13 18:07:58 -07:00
justbur
2d8767caa4 Disable special-keys option by default
It's probably too surprising to have enabled by default.
2016-03-10 19:54:56 -05:00
justbur
e81b7898ac Fix compiler warnings
Fixes #106
2016-03-10 09:03:35 -05:00
justbur
4622d18850 Increment version 2016-03-03 16:43:31 -05:00
justbur
5e0b9b64fa Fix bug when show-prefix is left and there is one line
Fixes #104
2016-03-03 16:41:31 -05:00
justbur
44c406404d Export reload-key-sequence function
Fixes #103
2016-02-29 08:07:55 -05:00
Justin Burkett
69a1435dff Merge pull request #102 from zonuexe/master
Disable show-trailing-whitespace
2016-02-13 09:54:50 -05:00
USAMI Kenta
4ea4a940ff Disable show-trailing-whitespace 2016-02-13 23:21:05 +09:00
justbur
0ca36cef48 Add missing case for which-key-show-prefix
nil is a valid value for this option.
2016-02-09 11:32:20 -05:00
justbur
529e9ac9f5 Add which-key-is-verbose
Allows one to silence messages which may not indicate an error.
2016-02-06 20:16:07 -05:00
justbur
e7a9ebf15f Refactor create-pages and show-page 2016-02-03 15:14:26 -05:00
justbur
a87e6212f8 Improve some function names 2016-02-03 15:13:24 -05:00
justbur
d24c12f563 Don't pass window-width around 2016-02-03 12:40:35 -05:00
justbur
e1f2e6be99 Fix problems with operator keymap function
1. Introduce using-show-keymap and using-show-operator-keymap vars to
make it clear how we are entering which-key

2. Add inhibit-next-operator-keymap for keys in the operator maps that
are bound to commands that read the next key "manually"

3. Fix problem where the next page hint was only being shown sometimes
in the operator maps. Need to distinguish between show-operator-keymap
and the possibility that an operator is active but the usual which-key
popup is showing.
2016-02-03 08:27:40 -05:00
justbur
dce72aa134 Simplify page turning function 2016-02-03 08:24:54 -05:00
justbur
f6f4aee340 Use keyboard-quit in abort key sequence
Need to do this for the operator keymap function. Otherwise the operator
state doesn't exit properly
2016-02-03 08:23:55 -05:00
justbur
6ddebba30c Comment out window var and add new func
The window var is not being used.
2016-02-03 08:22:53 -05:00
justbur
094136858f Don't listify key sequence repeatedly
This function is not idempotent it turns out.
2016-01-29 21:08:12 -05:00
justbur
9c93581566 Interpret ESC in operator popup
See #99
2016-01-29 20:41:15 -05:00
justbur
d9bb55cd00 Improve previous commit
Filter out keys with :suppress-keymap property, which seem to be the
primary ones ignored in operator state
2016-01-28 15:42:33 -05:00
justbur
456053cd70 Merge branch 'master' of https://github.com/justbur/emacs-which-key 2016-01-28 15:04:05 -05:00
justbur
f3681e93c5 Initial try at addressing #99 2016-01-28 15:03:27 -05:00
Justin Burkett
f69f694d8a Merge pull request #100 from yatesco/patch-1
Trivial fix correcting SpacEmacs
2016-01-26 07:55:58 -05:00
Colin Yates
5909fb2fc3 Trivial fix correcting SpacEmacs 2016-01-26 12:47:58 +00:00
justbur
f1d3d1b5e5 Add which-key-idle-secondary-delay
Allows the delay time to be different for popups that follow an initial
popup within the same key sequence.
2016-01-17 20:57:44 -05:00