Browse Source

Merge pull request #321 from toctan/master

Do not show the tip if the cursor is in the minibuffer window
custom
Bozhidar Batsov 13 years ago
parent
commit
ca4ae2e4f8
  1. 1
      .gitignore
  2. 3
      core/prelude-core.el

1
.gitignore

@ -17,3 +17,4 @@ places
savefile/
/prelude-modules.el
projectile-bookmarks.eld
session*

3
core/prelude-core.el

@ -352,10 +352,11 @@ Doesn't mess with special buffers."
(defun prelude-tip-of-the-day ()
"Display a random entry from `prelude-tips'."
(interactive)
(unless (window-minibuffer-p)
;; pick a new random seed
(random t)
(message
(concat "Prelude tip: " (nth (random (length prelude-tips)) prelude-tips))))
(concat "Prelude tip: " (nth (random (length prelude-tips)) prelude-tips)))))
(defun prelude-eval-after-init (form)
"Add `(lambda () FORM)' to `after-init-hook'.

Loading…
Cancel
Save