Created
April 19, 2022 11:58
-
-
Save sam159247/4e4418a1b40fde616eca666a5813dadf to your computer and use it in GitHub Desktop.
[VSCode] Open project with fzf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/fish | |
cd ~/projects | |
set -x PJ_PATH (find * -type d -maxdepth 0 | fzf --preview 'tree -C {} | head -200') && code $PJ_PATH && cd $PJ_PATH && clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment