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
But then, for this to consistently work, we would need to take our box size from the preexisting glyphs, i.e. self.font_dim. That part is missing. The possible overlap must then also be taken into account.
Is this something we want (to try out at least)?
Shall a PR be created?
I patch Cascadia Code without replacing the Poweline Glyphs since they got them originally, and that is quite ok. But, as far as I recall, the 'small colored line' (i.e. #29) is already present in Cascadia Code Powerline ;-)
P.S. Maybe rather
# check if a glyph already exists in this location
- if careful or 'careful' in sym_attr['params']:+ if careful or sym_attr['params'].get('careful'):
as this would evaluate the 'careful': False to not be careful :->
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I just noticed this:
Source
Technically the foundation is there:
carefulis the command line option--careful, and the other careful can be specified here for example:But then, for this to consistently work, we would need to take our box size from the preexisting glyphs, i.e.
self.font_dim. That part is missing. The possibleoverlapmust then also be taken into account.Is this something we want (to try out at least)?
Shall a PR be created?
I patch Cascadia Code without replacing the Poweline Glyphs since they got them originally, and that is quite ok.
But, as far as I recall, the 'small colored line' (i.e. #29) is already present inCascadia Code Powerline;-)P.S. Maybe rather
as this would evaluate the
'careful': Falseto not be careful :->Edit: Strikeout one line
All reactions