Remove references to old scratch buffer functions

This commit is contained in:
Henrik Lissner 2019-04-19 19:54:14 -04:00
parent 99c26e2fc2
commit d6839fc4c6
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@
(+workspace/display)) (+workspace/display))
(setq +calendar--wconf (current-window-configuration)) (setq +calendar--wconf (current-window-configuration))
(delete-other-windows) (delete-other-windows)
(doom/switch-to-scratch-buffer) (switch-to-buffer (doom-fallback-buffer))
(+calendar--init))) (+calendar--init)))
;;;###autoload ;;;###autoload

View file

@ -52,10 +52,10 @@
;;; Leader keys ;;; Leader keys
(map! :leader (map! :leader
:desc "Find file in project" "C-f" #'projectile-find-file :desc "Find file in project" "C-f" #'projectile-find-file
:desc "Evaluate line/region" "e" #'+eval/line-or-region :desc "Evaluate line/region" "e" #'+eval/line-or-region
:desc "Pop up scratch buffer" "x" #'doom/open-to-scratch-buffer :desc "Open scratch buffer" "x" #'doom/open-scratch-buffer
:desc "Switch to scratch buffer" "X" #'doom/switch-to-scratch-buffer :desc "Open project scratch buffer" "X" #'doom/open-project-scratch-buffer
(:when (featurep! :emacs term) (:when (featurep! :emacs term)
:desc "Terminal" "`" #'+term/open :desc "Terminal" "`" #'+term/open