stuff
This commit is contained in:
parent
14597de407
commit
e12c18dae6
|
@ -1,10 +1,11 @@
|
|||
#!/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)"
|
||||
|
||||
if [ ! -z $selected_path ]
|
||||
if [ ! -z "${selected_path}" ]
|
||||
then
|
||||
nvim "$selected_path"
|
||||
echo "${selected_path}"
|
||||
nvim "${selected_path}"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue