diff options
| author | Amin Bandali <bandali@gnu.org> | 2019-09-06 12:13:21 -0400 | 
|---|---|---|
| committer | Amin Bandali <bandali@gnu.org> | 2019-09-06 12:13:21 -0400 | 
| commit | fa9943dccbfd6cd3d7cefa8777e340e9d0b686b4 (patch) | |
| tree | 64d58538648ccfa63eeadd9dea31e1ed838c62a4 | |
| parent | 1bfeb417534361240a8b7dba88365da95b0d60ad (diff) | |
| download | configs-fa9943dccbfd6cd3d7cefa8777e340e9d0b686b4.tar.gz configs-fa9943dccbfd6cd3d7cefa8777e340e9d0b686b4.tar.xz configs-fa9943dccbfd6cd3d7cefa8777e340e9d0b686b4.zip | |
emacs: try out dmenu, report some bugs
- Duplicated entries:
  https://github.com/lujun9972/el-dmenu/issues/7
- Be smarter about saving history
  https://github.com/lujun9972/el-dmenu/issues/8
TODO: remove setting dmenu-history-size to 0 once the bug is fixed
| -rw-r--r-- | .emacs.d/init.el | 15 | 
1 files changed, 10 insertions, 5 deletions
| diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 847f282..4355ad6 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1761,11 +1761,9 @@ This function is intended for use with `ivy-ignore-buffers'."                 ("p" . mc/mark-previous-like-this)                 ("a" . mc/mark-all-like-this)))) -(comment -  ;; TODO -  (use-package forge -    :after magit -    :demand)) +(use-package forge +  :demand +  :after magit)  (use-package yasnippet    :defer 0.6 @@ -1874,6 +1872,13 @@ This function is intended for use with `ivy-ignore-buffers'."    :demand    :config (minions-mode)) +(use-package dmenu +  :disabled +  :custom +  (dmenu-history-size 0) +  (dmenu-prompt-string "run: ") +  (dmenu-save-file (b/var "dmenu-items"))) +  ;;; Email (with Gnus) | 
