From 1a27527794c526d48c3c1e706bdff9cb1b6e0882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCndler?= Date: Thu, 16 Jul 2020 12:35:24 +0200 Subject: [PATCH] Include the base environment in auto-completion --- _conda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_conda b/_conda index 16ba637..4ed260e 100644 --- a/_conda +++ b/_conda @@ -128,7 +128,7 @@ local -A opt_args __conda_envs(){ local -a envs - envs=($( cat $HOME/.conda/environments.txt | cut -f1 -d' ')) + envs=($(echo base && cat $HOME/.conda/environments.txt | cut -f1 -d' ')) _describe -t envs 'conda environments' envs }