stuff
This commit is contained in:
parent
14597de407
commit
e12c18dae6
|
@ -1,10 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# stands for Open Code like my code
|
# stands for fuzzy vim
|
||||||
|
|
||||||
selected_path="$(find ~/Code/ ~/.local/bin/ ~/.config/ -type d -not -path '*/\.git*' -print | fzf)"
|
selected_path="$(find ~/Code/ ~/.local/bin/ ~/.config/ -type d -not -path '*/\.git*' -print | fzf)"
|
||||||
|
|
||||||
if [ ! -z $selected_path ]
|
if [ ! -z "${selected_path}" ]
|
||||||
then
|
then
|
||||||
nvim "$selected_path"
|
echo "${selected_path}"
|
||||||
|
nvim "${selected_path}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue