commit 5ca3ebbf7c3cef6db6b8270af4fcf0be087c29c1
parent 635c4ebe0aae63eafb3119f0b8cef6f057759b62
Author: Sebastiano Tronto <sebastiano.tronto@gmail.com>
Date: Fri, 13 May 2022 16:57:49 +0200
removed mblaze-extras mv
Diffstat:
2 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/TODO b/TODO
@@ -1,6 +1,9 @@
* Modify all dmenu-* scripts to optionally use another menu, like vis-menu (slmenu)
Do this by taking an optional $1 which is the name of the program to use
(optional $dir argument is removed: fix dmenu-bookmarks simply using cd)
+* Big problem: slmenu does not allow multiple selections; this is a problem
+ for my workflow for sel and for sfeed-menu (and sometimes for open-file)
+* Solution: leave dmenu default option, use slmenu for a selected few aliases in .profile
* mblaze-extras: remove mmv, just use complete_mrefile=mail/...
diff --git a/mblaze-extras b/mblaze-extras
@@ -7,7 +7,6 @@
# Usage: mblaze-extras command
# List of commands:
# get [filter]
-# mv [folder]
# pick [field]
# save
# scan [folder]
@@ -51,14 +50,6 @@ if [ -z "$1" ]; then
echo "Usage: mblaze-extras COMMAND"
elif [ "$1" = "scan" ]; then
mbextra_scan $2
-elif [ "$1" = "mv" ]; then
- folder=$2
- if [ -n "$folder" ]; then
- shift; shift
- echo $@ $mdir/$folder | xargs mrefile
- else
- echo "No folder given, not moved"
- fi
elif [ "$1" = "get" ]; then
mbextra_get $2
elif [ "$1" = "save" ]; then