You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is :GoFiles command which lists the go files. I wish there to be similar commands for listing test files only, something like: :GoTestFiles for go list -f '{{join .TestGoFiles "\n"}}' :GoXTestFiles for go list -f '{{join .XTestGoFiles "\n"}}'
Default output of such listing commands is not very useful and not very readable. Therefore I propose to integrate such listing commands with fzf plugin seamlessly. For example, if fzf is installed, override :GoFiles to something like following and if there is no fzf, fallback to default.
There is
:GoFiles
command which lists the go files. I wish there to be similar commands for listing test files only, something like::GoTestFiles
forgo list -f '{{join .TestGoFiles "\n"}}'
:GoXTestFiles
forgo list -f '{{join .XTestGoFiles "\n"}}'
Default output of such listing commands is not very useful and not very readable. Therefore I propose to integrate such listing commands with fzf plugin seamlessly. For example, if fzf is installed, override
:GoFiles
to something like following and if there is no fzf, fallback to default.(--preview option can be safely omitted)
The text was updated successfully, but these errors were encountered: