We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70772ef commit 890f25cCopy full SHA for 890f25c
buku_run
@@ -44,7 +44,7 @@ Use <span color='${help_color}'>${switch_view}</span> to switch View. <span colo
44
fi
45
elif [[ $val -eq 0 ]]; then
46
if [[ $mode == "bookmarks" ]]; then
47
- id=$(echo "${menu}" | awk -F ' ' '{ print $1 }')
+ id=$(echo "${menu%% *}")
48
for bm in ${id}; do
49
buku -o "${bm}"
50
done
@@ -140,9 +140,9 @@ editMenu () {
140
main
141
elif [[ $editmenu == "tags: NOTAG" ]]; then
142
addTags --update
143
- elif [[ $editmenu == "tags:"* ]]; then
+ elif [[ $editmenu =~ "tags:*" ]]; then
144
tags="${tags}" editTags
145
- elif [[ $editmenu == "url:"* ]]; then
+ elif [[ $editmenu =~ "url:*" ]]; then
146
editBookmark
147
148
0 commit comments