From 492c29c096d8a0becc6aafd6f1eb568944f4e0a5 Mon Sep 17 00:00:00 2001 From: druckdev Date: Mon, 10 May 2021 17:30:46 +0200 Subject: [PATCH] git:functions: Remove old unused `nemo` wrapper --- .config/zsh/zshrc.d/40-functions.zsh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.config/zsh/zshrc.d/40-functions.zsh b/.config/zsh/zshrc.d/40-functions.zsh index 9d8352c..068a773 100644 --- a/.config/zsh/zshrc.d/40-functions.zsh +++ b/.config/zsh/zshrc.d/40-functions.zsh @@ -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