summaryrefslogtreecommitdiff
path: root/v
diff options
context:
space:
mode:
Diffstat (limited to 'v')
-rwxr-xr-xv12
1 files changed, 0 insertions, 12 deletions
diff --git a/v b/v
deleted file mode 100755
index 4a6543a..0000000
--- a/v
+++ /dev/null
@@ -1,12 +0,0 @@
-if [[ -d $1 ]]
-then
- rg --files $1 | fzf | xargs edit
-elif [[ -f $1 ]]
-then
- edit $1
-elif [[ ! -z $1 ]]
-then
- edit $1
-else
- rg --files . | fzf | xargs edit
-fi