git:functions: Remove old unused nemo wrapper

This commit is contained in:
2021-05-10 17:30:46 +02:00
parent 4053920f53
commit 492c29c096

View File

@@ -288,15 +288,6 @@ trash() {
fi
}
## Open nemo in current directory if no argument is specified
nemo() {
if (( ! $# )); then
command nemo .
else
command nemo "$@"
fi
}
## Move one or more file(s) but keep a symlink to the new location.
mvln() {
if (( # < 2 )); then