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

Add dired-from-git-ls-files

master
10sr пре 5 година
родитељ
комит
9a989a8327
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 измењених фајлова са 11 додато и 7 уклоњено
  1. +11
    -7
      emacs.el

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

@@ -1608,8 +1608,8 @@ and search from projectile root (if projectile is available)."
(safe-require-or-eval 'projectile)
(projectile-project-p))
(projectile-with-default-dir (projectile-project-root)
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode)))

@@ -1626,8 +1626,8 @@ and search from projectile root (if projectile is available)."
(error "My-Rgrep: Command for rgrep not found"))))
(if (safe-require-or-eval 'projectile)
(projectile-with-default-dir (projectile-project-root)
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode))
(compilation-start command-args
'grep-mode))))

@@ -1983,16 +1983,20 @@ use for the buffer. It defaults to \"*recetf-show*\"."
;; It works!
;; (pop-to-buffer (dired-noselect '("." "shrc" "emacs.el")))

(defun my-dired-git-ls-files ()
(defun my-dired-git-ls-files (args)
"Dired from git ls-files."
(interactive)
(interactive "sgit ls-files args: ")
(pop-to-buffer-same-window
(dired-noselect `(,default-directory
,@(split-string (shell-command-to-string "git ls-files -z")
,@(split-string (shell-command-to-string (concat "git ls-files -z " args))
"\0" t))
""))
)

(define-key ctl-x-map (kbd "C-l") 'my-dired-git-ls-files)

;; (define-minor-mode my-dired-glob-filter)


;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)


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