Browse Source

Remove beacon-mode

In the end of the day I've decided it adds little value, so it's best
to leave it to the users to decide if they want to use it or not.
custom
Bozhidar Batsov 5 years ago
parent
commit
d3203cbb2f
  1. 1
      CHANGELOG.md
  2. 1
      core/prelude-packages.el
  3. 4
      core/prelude-ui.el

1
CHANGELOG.md

@ -12,6 +12,7 @@
* [#1277](https://github.com/bbatsov/prelude/issues/1277): Make it possible to disable the creation of `Super`-based keybindings via `prelude-super-keybindings`. * [#1277](https://github.com/bbatsov/prelude/issues/1277): Make it possible to disable the creation of `Super`-based keybindings via `prelude-super-keybindings`.
* Removed deprecated alias `prelude-ensure-module-deps`. * Removed deprecated alias `prelude-ensure-module-deps`.
* Remove `prelude-fullscreen`, as these days people can use `toggle-frame-fullscreen` instead. (it was introduced in Emacs 24.4) * Remove `prelude-fullscreen`, as these days people can use `toggle-frame-fullscreen` instead. (it was introduced in Emacs 24.4)
* Removed `beacon-mode`.
### Bugs fixed ### Bugs fixed

1
core/prelude-packages.el

@ -57,7 +57,6 @@
'(ace-window '(ace-window
avy avy
anzu anzu
beacon
browse-kill-ring browse-kill-ring
crux crux
discover-my-major discover-my-major

4
core/prelude-ui.el

@ -79,10 +79,6 @@
(when prelude-theme (when prelude-theme
(load-theme prelude-theme t)) (load-theme prelude-theme t))
;; show the cursor when moving after big movements in the window
(require 'beacon)
(beacon-mode +1)
;; show available keybindings after you start typing ;; show available keybindings after you start typing
(require 'which-key) (require 'which-key)
(which-key-mode +1) (which-key-mode +1)

Loading…
Cancel
Save