瀏覽代碼

fix terminal-title prefs

undefined
10sr 10 年之前
父節點
當前提交
7896c121d7
共有 2 個檔案被更改,包括 25 行新增8 行删除
  1. +21
    -4
      emacs.el
  2. +4
    -4
      shrc

+ 21
- 4
emacs.el 查看文件

@@ -304,10 +304,27 @@ found, otherwise returns nil."
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; title and mode-line

;; (when (fetch-library
;; "https://raw.github.com/10sr/emacs-lisp/master/terminal-title.el"
;; t)
;; (require 'terminal-title nil t))
(when (fetch-library
"https://raw.github.com/10sr/emacs-lisp/master/terminal-title.el"
t)
(require 'terminal-title nil t)
;; if TERM is not screen use default value
(when (equal (car (split-string (frame-parameter nil
'tty-type)
"-"))
"screen")
(setq terminal-title-format
(if (getenv "SSH_CONNECTION")
'("em:"
user-login-name
"@"
system-name
":"
(file-name-nondirectory (directory-file-name
default-directory)))
'((file-name-nondirectory (directory-file-name
default-directory))))))
(terminal-title-mode))

(setq eol-mnemonic-dos "\\r\\n")
(setq eol-mnemonic-mac "\\r")


+ 4
- 4
shrc 查看文件

@@ -551,10 +551,10 @@ datestr(){
date +"$dfmt"
}

ssh(){
__my_set_screen_title ssh
command ssh "$@"
}
# ssh(){
# # __my_terminal_title ssh
# command ssh "$@"
# }

__ssh_with_cd(){
# __ssh_with_cd <host> <directory> [<arg> ...]


Loading…
取消
儲存