Преглед на файлове

Add prefs for new git-command api

pull/1/head
10sr преди 10 години
родител
ревизия
27d1d45d90
променени са 1 файла, в които са добавени 19 реда и са изтрити 8 реда
  1. +19
    -8
      emacs.el

+ 19
- 8
emacs.el Целия файл

@@ -938,14 +938,25 @@ found, otherwise returns nil."
t)
(lazy-load-eval 'git-command
nil
(if (boundp 'git-command-major-mode-alist)
(progn
(add-to-list 'git-command-major-mode-alist
'("di" . diff-mode))
(add-to-list 'git-command-major-mode-alist
'("graph" . fundamental-mode))
(add-to-list 'git-command-major-mode-alist
'("log" . fundamental-mode))))
;; old git-command
(when (boundp 'git-command-major-mode-alist)
(add-to-list 'git-command-major-mode-alist
'("di" . diff-mode))
(add-to-list 'git-command-major-mode-alist
'("graph" . fundamental-mode))
(add-to-list 'git-command-major-mode-alist
'("log" . fundamental-mode)))

;; new git-command
(when (boundp 'git-command-view-command-list)
(add-to-list 'git-command-view-command-list
"graph"))
(when (boundp 'git-command-aliases-alist)
(add-to-list 'git-command-aliases-alist
'("di" . (lambda (options cmd args)
(git-command-exec options
"diff"
args)))))
(or git-command-prompt-file
(setq git-command-prompt-file
(git-command-find-git-ps1


Зареждане…
Отказ
Запис