We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dances.modes.*.lineHighlight
I want to distinguish modes with color (#13) but it seems like dances.modes.*.lineHighlight is not working
My configuration is:
{ // ... "dance.modes": { "insert": { "cursorStyle": "line-thin", "decorations": null, "lineHighlight": "#282a36" }, "normal": { "cursorStyle": "line", "lineNumbers": "on", "decorations": null, "lineHighlight": "#3a3d4d" }, }, // ... }
The text was updated successfully, but these errors were encountered:
My bad, lineHighlight was deprecated a while ago in favor of decorations, but this wasn't documented. Your snippet becomes
lineHighlight
decorations
{ "dance.modes": { "insert": { "cursorStyle": "line-thin", "decorations": { "applyTo": "main", "backgroundColor": "#282a36", "isWholeLine": true, }, }, "normal": { "cursorStyle": "line", "lineNumbers": "on", "decorations": { "applyTo": "main", "backgroundColor": "#3a3d4d", "isWholeLine": true, }, }, }, }
7245eca properly marks lineHighlight as deprecated.
Sorry, something went wrong.
No branches or pull requests
I want to distinguish modes with color (#13) but it seems like
dances.modes.*.lineHighlight
is not workingMy configuration is:
The text was updated successfully, but these errors were encountered: