Merge pull request #2609 from Lunchb0ne/env-fix-again

Fix no env in the prompt string
This commit is contained in:
Dax T Games 2021-11-07 14:41:53 -05:00 committed by GitHub
commit f72c285d8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
vendor/clink.lua vendored
View File

@ -168,7 +168,7 @@ local function set_prompt_filter()
local version_control = prompt_includeVersionControl and "{git}{hg}{svn}" or ""
prompt = "{uah}{cwd}" .. version_control .. get_lamb_color() .. cr .. "{lamb} \x1b[0m"
prompt = "{uah}{cwd}" .. version_control .. get_lamb_color() .. cr .. "{env}{lamb} \x1b[0m"
prompt = string.gsub(prompt, "{uah}", uah)
prompt = string.gsub(prompt, "{cwd}", cwd)
prompt = string.gsub(prompt, "{env}", env)