rlivings39 / vscode-fzf-quick-open

vscode extension providing quick file/folder open and searching using fzf
MIT License
77 stars 17 forks source link

Add: fzf-open-file-git-project-root command and fzf-search-git-project-root - #32 #42

Closed clearfeld closed 1 year ago

clearfeld commented 1 year ago

This PR closes issue #32.

As per @bergmul request, I've added two new commands that will allow for open or search at the project root (assuming .git folder as project root).

fzf: Open file in Project using fzf

{
"command": "fzf-quick-open.runFzfFileProjectRoot",
"title": "fzf: Open file in Project Root (.git) using fzf"
}

fzf: Search in Project using rg and fzf

{
"command": "fzf-quick-open.runFzfSearchProjectRoot",
"title": "fzf: Search in Project Root (.git) using rg and fzf"
}
rlivings39 commented 1 year ago

Thanks for the enhancements @clearfeld !