X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fzsh-navigation-tools%2Fn-env;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fzsh-navigation-tools%2Fn-env;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=c003b63a861a176c67dea11a20a308d012cc1711;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/zsh-navigation-tools/n-env b/stow/oh-my-zsh/.oh-my-zsh/plugins/zsh-navigation-tools/n-env deleted file mode 100644 index c003b63..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/zsh-navigation-tools/n-env +++ /dev/null @@ -1,47 +0,0 @@ -# Copy this file into /usr/share/zsh/site-functions/ -# and add 'autoload n-env` to .zshrc -# -# This function allows to choose an environment variable -# for edition with vared -# -# Uses n-list - -emulate -L zsh - -setopt extendedglob -unsetopt equals -zmodload zsh/curses - -local IFS=" -" - -[ -f ~/.config/znt/n-list.conf ] && builtin source ~/.config/znt/n-list.conf -[ -f ~/.config/znt/n-env.conf ] && builtin source ~/.config/znt/n-env.conf - -local list -local selected - -NLIST_REMEMBER_STATE=0 - -list=( `env` ) -list=( "${(@M)list:#(#i)*$1*}" ) - -local NLIST_GREP_STRING="$1" - -if [ "$#list" -eq 0 ]; then - echo "No matching variables" - return 1 -fi - -list=( "${(@i)list}" ) -n-list "$list[@]" - -if [ "$REPLY" -gt 0 ]; then - selected="$reply[REPLY]" - selected="${selected%%=*}" - echo "Editing \`$selected':" - print -rs "vared \"$selected\"" - vared "$selected" -fi - -# vim: set filetype=zsh: