web-dev-qa-db-ja.com

崇高なテキストエディタからテキストの周りの長方形のボックスを削除する方法

次のテキスト表示の周りの不器用なボックスを削除したい:

enter image description here

このためにどのパッケージをインストールしたのか思い出せません。誰か教えてもらえますか?

2
MD Sijad Faisal

control + shift + pまたはcmd + shift + pと入力してpackage control:disable packageと入力し、次にsublimelinterと入力してクリックします。それが機能しない場合は、anacondaと入力し、クリックして無効にします

3
Mastan

これらはすべてリンターエフェクトです、goto 設定>パッケージ設定>アナコンダ>設定-ユーザーおよびこれらの行を追加

{
    "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
}
0
Chaudhari Akash