blob: 93d3e8fa4b58d4923745cfc4de6d346462bdc2cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/sh
# Usage (- represents end of arguments) :-
# spr - :: opens the raw directory in vim for navigation (sprf is generally better)
# spr name - :: Opens the file "name"
# (TODO)spr dir/name - :: Creates "dir" if doesnt exist and opens "dir/name"
# spr fuzzy :: opens a fuzzy find list of spr files to edit. Shortcut is "sprf"
# (TODO)spr tree :: opens a tree view of all files. Shortcut is "sprt"
begins_with() { # haystack prefix
value=$1
prefix=$2
case "$value" in
"$prefix"*) return 0
esac
return 1
}
[ -z "$EDITOR" ] && echo "EDITOR not set" && exit
[ -z "$FUZZY" ] && echo "FUZZY not set" && exit
tree() {
eza --tree "$HOME/sporadic"
}
fuzzy() {
FILE="$(find "$HOME/sporadic" -type f | $FUZZY)"
[ -z "$FILE" ] && exit 0
if ! begins_with "$FILE" "$HOME/sporadic" ; then
FILE="$HOME/sporadic/$FILE"
fi
mkdir "$(dirname "$FILE")" -p
$EDITOR "$FILE"
}
if [ -z "$1" ] || [ "$1" = "fuzzy" ] ;
then
fuzzy
exit 0
fi
if [ "$1" = "tree" ] ; then
tree
exit 0
fi
mkdir "$HOME/sporadic/$(dirname $1)" -p
$EDITOR "$HOME/sporadic/$1"
|