瀏覽代碼

.emacs: fix bug of using vim on term-mode

pull/1/head
10sr 12 年之前
父節點
當前提交
a9c0903187
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. +5
    -2
      .emacs

+ 5
- 2
.emacs 查看文件

@@ -365,6 +365,7 @@
(global-set-key (kbd "C-<down>") (lambda () (interactive)(scroll-up 1))) (global-set-key (kbd "C-<down>") (lambda () (interactive)(scroll-up 1)))
(global-set-key (kbd "C-<left>") 'scroll-down) (global-set-key (kbd "C-<left>") 'scroll-down)
(global-set-key (kbd "C-<right>") 'scroll-up) (global-set-key (kbd "C-<right>") 'scroll-up)
(global-set-key (kbd "C-x M-x") 'execute-extended-command)


;; C-h and DEL ;; C-h and DEL
;; (global-set-key (kbd "C-h") 'backward-delete-char-untabify) ;; (global-set-key (kbd "C-h") 'backward-delete-char-untabify)
@@ -598,7 +599,9 @@ return nil if LIB unfound and downloading failed, otherwise the path of LIB."
(require 'multi-term nil t)) (require 'multi-term nil t))


;; http://d.hatena.ne.jp/goinger/20100416/1271399150 ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
(setq term-ansi-default-program "/bin/bash")
(setq term-ansi-default-program shell-file-name)
(and (require 'term nil t)
(setq term-display-table (make-display-table)))
(add-hook 'term-mode-hook (lambda () ; todo: fix around term-display-table (add-hook 'term-mode-hook (lambda () ; todo: fix around term-display-table
(define-key term-raw-map "\C-y" 'term-paste) (define-key term-raw-map "\C-y" 'term-paste)
;; (define-key term-raw-map "\C-q" 'move-beginning-of-line) ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
@@ -612,7 +615,6 @@ return nil if LIB unfound and downloading failed, otherwise the path of LIB."
(define-key term-raw-map "\C-c" 'term-send-raw) (define-key term-raw-map "\C-c" 'term-send-raw)
(define-key term-raw-map "\C-x" (lookup-key (current-global-map) "\C-x")) (define-key term-raw-map "\C-x" (lookup-key (current-global-map) "\C-x"))
(define-key term-raw-map "\C-z" (lookup-key (current-global-map) "\C-z")) (define-key term-raw-map "\C-z" (lookup-key (current-global-map) "\C-z"))
;; (define-key term-raw-map "\M-x" (lookup-key (current-global-map) "\M-x"))
(set (make-variable-buffer-local 'scroll-margin) 0))) (set (make-variable-buffer-local 'scroll-margin) 0)))


;; (when (and (executable-find "git") ;; (when (and (executable-find "git")
@@ -625,6 +627,7 @@ return nil if LIB unfound and downloading failed, otherwise the path of LIB."


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; gmail ;; gmail

(setq mail-interactive t (setq mail-interactive t
send-mail-function 'smtpmail-send-it send-mail-function 'smtpmail-send-it
;; message-send-mail-function 'smtpmail-send-it ;; message-send-mail-function 'smtpmail-send-it


Loading…
取消
儲存