From 06e00ea44219e9e55af5ad67438a55e7096dcc8f Mon Sep 17 00:00:00 2001 From: "matthias@arch" Date: Fri, 16 Dec 2022 01:23:06 +0100 Subject: [PATCH] fixed completion --- _regina.compdef.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_regina.compdef.zsh b/_regina.compdef.zsh index 29dc49a..359e8cc 100644 --- a/_regina.compdef.zsh +++ b/_regina.compdef.zsh @@ -3,10 +3,10 @@ _config-file() { # list all files that end in .conf # -s separator, descritions options - _values -s , 'config files' $(find . -type f -name '*.conf') + _values 'config files' *.conf } _csv-file() { - _values -s , 'geoip city database as csv' $(find . -type f -name '*.csv') + _values 'geoip city database as csv' *.csv *.CSV } _regina() {