You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating from 1.5.4 to 1.5.5 CTRL + SPACE autocompletion started to render the SGR escape code of the selected_completion color instead of the color itself.
Example from 1.5.4 after pressing git then CTRL + SPACE:
Example from 1.5.5 after pressing git then CTRL + SPACE:
Pressing the arrow keys moves 0;38;5;16;48;5;254 to the next item. :)
The relevant part of my clink_settings:
# name: Selected completion color
# type: color
color.selected_completion = sgr 38;5;16;48;5;254
The text was updated successfully, but these errors were encountered:
@xak2000 Thank you for reporting this. I believe you that it's happening for your.
However, I am unable to reproduce that. I don't think the relevant part is the value of color.selected_completion -- I think it's probably related to one or more other settings or .inputrc variables.
So, I need more information to be able to reproduce the problem, so that I can debug it and fix it.
Can you please share your .inputrc file and the full output from clink set?
I thought maybe it's because colored-stats is off in your config (there are no colors in the completion list), but I still can't reproduce it even when I turn off colored-stats.
UPDATE:
I was able to reproduce it using a fresh profile with no .inputrc file. I'll track down what combination of .inputrc configuration variables is falling into this broken state.
After updating from 1.5.4 to 1.5.5 CTRL + SPACE autocompletion started to render the SGR escape code of the
selected_completion
color instead of the color itself.Example from 1.5.4 after pressing git then CTRL + SPACE:
Example from 1.5.5 after pressing git then CTRL + SPACE:
Pressing the arrow keys moves
0;38;5;16;48;5;254
to the next item. :)The relevant part of my
clink_settings
:The text was updated successfully, but these errors were encountered: