Преглед изворни кода

emacs.el: Add prefs for new git-command

pull/1/head
10sr пре 10 година
родитељ
комит
b5eeb8038c
1 измењених фајлова са 18 додато и 6 уклоњено
  1. +18
    -6
      emacs.el

+ 18
- 6
emacs.el Прегледај датотеку

@@ -925,16 +925,28 @@ found, otherwise returns nil."
t)
(lazy-load-eval 'git-command
nil
(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))

;; for git-command old version
(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)))

;; for git-command new version
(when (boundp 'git-command-view-command-list)
(setq git-command-view-command-list
`("log" "graph" ,@git-command-view-command-list))
)
(when (boundp 'git-command-aliases-alist)
;; (message "new version of git-command!")
(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


Loading…
Откажи
Сачувај