Skip to content

Commit

Permalink
Merge pull request #181 from LemonBreezes/fix-comma-error-in-repo-clo…
Browse files Browse the repository at this point in the history
…ne-action

fix typo error in repo clone action
  • Loading branch information
armindarvish authored Dec 27, 2024
2 parents a914487 + 1acbc03 commit 28f4725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion consult-gh.el
Original file line number Diff line number Diff line change
Expand Up @@ -3097,7 +3097,7 @@ ARGS are ignored."
(message "repo %s was cloned to %s" (propertize ,repo 'face 'font-lock-keyword-face) (propertize (expand-file-name ,name ,targetdir) 'face 'font-lock-type-face)))))
:cmd-args (list "repo" "clone" (format "%s" repo) (expand-file-name name targetdir))))
(let ((inhibit-message t))
(expand-file-name ,name ,targetdir)))
(expand-file-name name targetdir)))

(defun consult-gh--repo-clone-action (cand)
"Clones a repo candidate, CAND.
Expand Down
2 changes: 1 addition & 1 deletion consult-gh.org
Original file line number Diff line number Diff line change
Expand Up @@ -3486,7 +3486,7 @@ ARGS are ignored."
(message "repo %s was cloned to %s" (propertize ,repo 'face 'font-lock-keyword-face) (propertize (expand-file-name ,name ,targetdir) 'face 'font-lock-type-face)))))
:cmd-args (list "repo" "clone" (format "%s" repo) (expand-file-name name targetdir))))
(let ((inhibit-message t))
(expand-file-name ,name ,targetdir)))
(expand-file-name name targetdir)))
#+end_src
******** clone action
#+begin_src emacs-lisp
Expand Down

0 comments on commit 28f4725

Please sign in to comment.