diff --git a/themes/fisk/fish_prompt.fish b/themes/fisk/fish_prompt.fish
index 5e67c24fac211879b8f880fdee0c4625b8046f40..cf0112e11491c8027445109da063975c7077b6f8 100644
--- a/themes/fisk/fish_prompt.fish
+++ b/themes/fisk/fish_prompt.fish
@@ -45,11 +45,12 @@ function fish_prompt --description 'Write out the prompt'
     (set_color $base01) $__fish_prompt_hostname \
   )
 
-  set -l _context_part (concat \
+  # Virtualenv, git, &c.
+  set -l context_part (concat \
     $__fish_prompt_cwd (prompt_pwd) $venv (set_color -o $c_yellow) (__fish_git_prompt) \
   )
 
   set -l prompt_end (concat (set_color $base01) 'âžž')
 
-  echo -n (concat $ret_part " " $user_part " " $_context_part " " $prompt_end (set_color normal) " ")
+  echo -n (concat $ret_part " " $user_part " " $context_part " " $prompt_end (set_color normal) " ")
 end