浏览代码

slight performance improvement

pull/1/head
10sr 10 年前
父节点
当前提交
06ca5129c4
共有 1 个文件被更改,包括 13 次插入2 次删除
  1. +13
    -2
      emacs.el

+ 13
- 2
emacs.el 查看文件

@@ -2062,12 +2062,23 @@ this is test, does not rename files"
;; ".")
;; " Stupid!")))

(defvar my-system-info
nil
"System info in the form of \"[user@host] \".")
(setq my-system-info
(concat "["
user-login-name
"@"
(car (split-string system-name
"\\."))
"] "))

(defadvice read-from-minibuffer (before info-in-prompt activate)
(ad-set-arg 0
(concat "[" user-login-name "@" system-name "] "
(concat my-system-info
(ad-get-arg 0))))

(defadvice read-string (before info-in-prompt activate)
(ad-set-arg 0
(concat "[" user-login-name "@" system-name "] "
(concat my-system-info
(ad-get-arg 0))))

正在加载...
取消
保存