How to remove rectangular box around text from sublime text editor

6,721

Solution 1

control + shift + p or cmd + shift + p and type package control:disable package and then type sublimelinter and click. if it doesn't work then type anaconda and click for disable

Solution 2

These are All linter effects, goto Preferences > Package Setting > anaconda > Settings-user and Add these lines

{
    "anaconda_tooltip_theme": "tooltip",
    "anaconda_gutter_marks": true,
    "anaconda_gutter_theme": "none",
    "anaconda_linter_underlines": true,
    "python_interpreter": "python3",
    "anaconda_linting_behaviour": "save-only", // Don't Want to see these if you are writing
    "anaconda_linting": false //disable permanently
}
Share:
6,721

Related videos on Youtube

MD Sijad Faisal
Author by

MD Sijad Faisal

Updated on September 18, 2022

Comments

  • MD Sijad Faisal
    MD Sijad Faisal over 1 year

    I want to remove the crummy boxes around text show in:

    enter image description here

    I can't remember which package I had installed for this. Can anybody tell me how?