Explorar el Código

Print date in minibuffer instead of mode-line

pull/15/head
10sr hace 8 años
padre
commit
16c8b86d52
Se han modificado 1 ficheros con 11 adiciones y 9 borrados
  1. +11
    -9
      emacs.el

+ 11
- 9
emacs.el Ver fichero

@@ -534,9 +534,9 @@ IF OK-IF-ALREADY-EXISTS is true force download."
(setq display-time-interval 29)
(setq display-time-day-and-date t)
(setq display-time-format "%Y/%m/%d %a %H:%M")
(if window-system
(display-time-mode 0)
(display-time-mode 1))
;; (if window-system
;; (display-time-mode 0)
;; (display-time-mode 1))
(when display-time-mode
(display-time-update)))

@@ -611,23 +611,25 @@ IF OK-IF-ALREADY-EXISTS is true force download."
(:eval (and (fboundp 'git-ps1-mode-get-current)
(git-ps1-mode-get-current " [GIT:%s]")))
" "
display-time-string))
(:eval (format-time-string display-time-format))))
(minibuffer-line-mode 1)
)

(when (safe-require-or-eval 'prompt-text)

(set-variable 'prompt-text-format
`(,(concat "["
`(,(concat ""
user-login-name
"@"
(car (split-string system-name
"\\."))
"][")
(:eval (abbreviate-file-name default-directory))
"]"
":")
(:eval (abbreviate-file-name (or buffer-file-name
default-directory)))
(:eval (and (fboundp 'git-ps1-mode-get-current)
(git-ps1-mode-get-current "[GIT:%s]")))
(git-ps1-mode-get-current " [GIT:%s]")))
" "
(:eval (format-time-string display-time-format))
"\n"
(:eval (symbol-name this-command))
": "))


Cargando…
Cancelar
Guardar