Skip to content

Commit

Permalink
Merge pull request #2661 from geekrumper/master
Browse files Browse the repository at this point in the history
Fix #2654: blank space added between {cwd} and version_control variable
  • Loading branch information
daxgames authored Feb 3, 2022
2 parents 711fe28 + 4098265 commit 99452c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/clink.lua
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ local function set_prompt_filter()
if uah ~= '' then uah = get_uah_color() .. uah end
if cwd ~= '' then cwd = get_cwd_color() .. cwd end

local version_control = prompt_includeVersionControl and "{git}{hg}{svn}" or ""
local version_control = prompt_includeVersionControl and " {git}{hg}{svn}" or ""

prompt = "{uah}{cwd}" .. version_control .. get_lamb_color() .. cr .. "{env}{lamb} \x1b[0m"
prompt = string.gsub(prompt, "{uah}", uah)
Expand Down

0 comments on commit 99452c8

Please sign in to comment.