how to disable highlighting of blocks when mouse hovers them
-
i disabled "highlight blocks" but if i hover the mouse next to a block, in that little space between the line number and the actual code, it highlights it still, which is annoying when folding and unfolding code blocks, here
if anyone could help, i would be thankful -
If you're using Sublime Text, try this:
Go to Preferences > Settings.
Add this line:"hover_highlight_gutter": false
Save and restart the editor.
If the setting doesn't exist or the issue persists, it may be controlled by the theme or a plugin. In that case:Go to Preferences > Customize Theme
Look for any gutter or highlight rules and remove or modify them.If you're using VS Code, disable these in your settings:
"editor.guides.bracketPairs": "never", "editor.guides.highlightActiveBracketPair": false, "editor.foldingHighlight": false