소스 검색

Fix function name

master
10sr 5 년 전
부모
커밋
5ffc7a0158
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      emacs.el

+ 3
- 3
emacs.el 파일 보기

@@ -2120,12 +2120,12 @@ initializing."
(bname (format "*GitWorktree<%s>*" name)))
(with-current-buffer (get-buffer-create bname)
(cd root)
(git-worktree--set-tabulated-list-mmode-variables)
(git-worktree--set-tabulated-list-mode-variables)
(git-worktree-mode)
(current-buffer))))
;; ((:worktree "/Users/10sr/.dotfiles" :head "5e7457a8d49ef6a517cdf39d038ba5fdf98dc68e" :branch "refs/heads/master") (:worktree "/Users/10sr/.dotfiles/b1" :head "fa7d868076d807692e35f82ae23596c903fd1117" :branch "refs/heads/b1"))

(defun git-worktree--set-tabulated-list-mmode-variables ()
(defun git-worktree--set-tabulated-list-mode-variables ()
"Set variables for `tabulated-list-mode'."
(let ((trees (git-worktree-get-current-trees)))
(setq tabulated-list-entries
@@ -2233,7 +2233,7 @@ initializing."
"Major mode for browsing recently opened files and directories."
(setq tabulated-list-padding 2)
(add-hook 'tabulated-list-revert-hook
'git-worktree--set-tabulated-list-mmode-variables
'git-worktree--set-tabulated-list-mode-variables
nil
t)
(tabulated-list-init-header)


불러오는 중...
취소
저장