-1

How do I turn off the white highlighting of the text in a box in Sublime Text 3? enter image description here

0stone0
  • 34,288
  • 4
  • 39
  • 64
Alex Mihoc
  • 80
  • 1
  • 7
  • Did you installed the `Anaconda package` ? – 0stone0 May 08 '20 at 12:58
  • 1
    Does this answer your question? [How to disable Highlighting on sublime text 3?](https://stackoverflow.com/questions/60893415/how-to-disable-highlighting-on-sublime-text-3) – OdatNurd May 08 '20 at 13:42

1 Answers1

0

These marks are introduced by the linting functionality of Anaconda, a Sublime extension which you most probably have installed.

To get rid of them, go to Preferences > Package Settings > Anaconda > Settings - User and change the linting settings there. To disable linting altogether, you can add:

"anaconda_linting": false

or to specifically remove the white text boxes as you asked, add:

"anaconda_linter_mark_style": "none"

For more inspiration on how to tune the appearance of the Anaconda linting marks, have a look in the default settings via Preferences > Package Settings > Anaconda > Settings - Default.

asparc
  • 136
  • 2