It's rather annoying and I can't seem to figure out why.
相关问题
- How to run code in Sublime text 2 python
- Vim syntax highlighting of doxygen style docstring
- Why is Sublime Package Control not working?
- C++ 11 code compiles with `clang++`, but not with
- White text in Sublime Text
相关文章
- trouble getting sublime to execute with linux term
-
Perl with Sublime Text 2:
not working - Customize syntax highlightin in canopy
- Show info about current character in status bar in
- VSCode configure syntax highlighting to match a st
- How can a Sublime Text build system access the con
- What does the three slashes in javascript do?
- In Sublime Text 3, how to have shortcuts for “Buil
If you still have a problem with those solutions suggested above (with anaconda lint):
Disable linting altogether within the user-defined Anaconda settings file, Anaconda.sublime-settings, via the file menu: Sublime > Preferences > Package Settings > Anaconda > Settings – User: When it opens file, just type the following and save it away ;-)
{"anaconda_linting": false}
At least, it fixed my problem. Blessings (a debtor)<><
You probably can change
"anaconda_linter_mark_style"
to"none"
and keep"anaconda_linter_underlines"
astrue
. This way it'll only put a underscore under errors but not highlight the whole line.I just found that this can also randomly happen on the last word that you searched. So if you searched for "integer" for instance. Then all instances of "integer" will have that white square around them.
If you don't want to disable SublimeLinter completely, you can set Syntax Specific Preferences.
Preferences -> Package Settings -> Sublime Linter -> Settings Syntax Specific User
The preferences is evaluated similar to CSS, it cascades. Think about the most user-specific, syntax-specific rules evaluated last.
E.g: I also do not like the white rectangle, so I opted for fills.
you can disable warnings in anaconda.sublime-settings via the file menu:
In opened file type following code and press
Ctrl + S
to save fileyou can also type this:
but it disables both warnings and errors, which is not good
Disabling Annaconda linting in sublimetext 3 for current file:
Anaconda: Disable linting on this file
and hit enterAnaconda: Enable linting on this file
Disabling linting persists between sessions.
Source