Skip to content

Commit

Permalink
fix: use double quotes to enable ansi color
Browse files Browse the repository at this point in the history
  • Loading branch information
linrongbin16 committed Jun 14, 2023
1 parent eb9eea2 commit f78938b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/fzfx/vim.vim
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let s:ansi_colors = {
\ }

function! s:set_ansi_color(content)
return '\x1b'.s:ansi_colors.red.a:content.'\x1b'.s:ansi_colors.clear
return "\x1b".s:ansi_colors.red.a:content."\x1b".s:ansi_colors.clear
endfunction

" defaults
Expand Down

0 comments on commit f78938b

Please sign in to comment.