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
The option vim.g.solarized_italic_variables does not seem to work in my configuration.
The screenshot shows that nbFiles2Process is properly detected as a variable (cursor on the variable + :Inspect), but it is not italicized. I tried vim.g.solarized_italic_functions = true, and it correctly italicized my functions.
The variables seems to not be identified as syntax.Identifier, which is the object on which the italicizing should be applied.
theme.lua
if vim.g.solarized_italic_variables == true then
syntax.Identifier = {fg = solarized.gray, bg = solarized.none, style = 'italic'}; -- any variable name
else
syntax.Identifier = {fg = solarized.gray}; -- any variable name
end
The option
vim.g.solarized_italic_variables
does not seem to work in my configuration.The screenshot shows that
nbFiles2Process
is properly detected as a variable (cursor on the variable + :Inspect), but it is not italicized. I triedvim.g.solarized_italic_functions = true
, and it correctly italicized my functions.solarized.lua
The text was updated successfully, but these errors were encountered: