How can I remove those annoying rectangles that wrap my code

1

I am starting to program in python using sublime text 3, I think that when installing anaconda here in sublime that kind of rectangles started to appear that bothered me when I saw the code. Can you tell me how to eliminate them please?

    
asked by Jesús Díaz 20.05.2018 в 01:42
source

2 answers

2

If you want to undo this option only without disabling the other options offered by the anaconda plugin

Go to Preferences → Package Settings → Anaconda → Settings - User . Then paste the following code and click save:

{
     "pep8": false,
}

This will completely disable the pep8 supports for python file formats

Finally, give control + s or cmd + s or File → Save , to save.
I hope this solves the problem for you

    
answered by 10.10.2018 в 17:43
1

You probably have the Anaconda package installed.

control + shift + p or cmd + shift + p and type control:disable package and then type sublimelinter and click on it. If it does not work then, type anaconda and click disable .

If the above does not work then, go to Preferences → Package Settings → Anaconda → Settings-User . Then paste the following code and click save:

{
    "anaconda_linting": false,
}
    
answered by 20.05.2018 в 04:52