Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.04 KB

File metadata and controls

37 lines (22 loc) · 1.04 KB

consult-ghq: Ghq interface using consult

consult-qhq-find-and-grep-cast.mp4

Commands

This package provides these commands.

consult-ghq-find

Select a repository from the ghq list and then find repository files using affe-find (similar to consult-find).

If you want to use consult-find instead, you can change like below:

(setq consult-ghq-find-function #'consult-find)

consult-ghq-grep

Select a repository from the ghq list and then grep repository files using affe-grep (similar to consult-ripgrep or consult-grep).

Also, you can change grep function like below:

(setq consult-ghq-grep-function #'consult-grep)

consult-ghq-switch-project

Select a project from the ghq list and then switch to it via project.el (default) or projectile

You can change switch project function like below:

(setq consult-ghq-switch-project-function #'projectile-switch-project)