From 2ae5b37f86faa24aa5af7510b46a12ba8de1eb64 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 6 Mar 2024 19:15:23 +0000 Subject: [PATCH] Add description to fish ve function. And use tabs, The Correct Way. --- private_dot_config/private_fish/functions/ve.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/private_dot_config/private_fish/functions/ve.fish b/private_dot_config/private_fish/functions/ve.fish index 514bd04..bafb546 100644 --- a/private_dot_config/private_fish/functions/ve.fish +++ b/private_dot_config/private_fish/functions/ve.fish @@ -1,3 +1,3 @@ -function ve - source ve/bin/activate.fish +function ve --description "Activate python virtual environment" + source ve/bin/activate.fish end