Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to disable kite hint snippet setting in VSCode?

The most recent update of Kite added a hint feature on the right of every line my cursor is on. image1, image2, which gets super annoying. I want to continue using Kite but I don't want this "Find related code in " to follow the cursor around.

like image 526
Aidenhsy Avatar asked Feb 17 '21 01:02

Aidenhsy


People also ask

How do I turn off hints in VS Code?

Type “editor. hover. enable” into the search field then check/uncheck the checkbox associated with “Controls whether the hover is shown.” to enable/disable the suggestion tooltip on hover.

How do I enable hints in Visual Studio code?

Open the Default Keyboard Shortcuts (File > Preferences > Keyboard Shortcuts) and search for "suggest".

How do I disable VS Code Linter?

To disable TSLint in VS Code, we can set the "typescript. validate. enable" setting to false in our VS Code settings. json file.

Does kite work with VS Code?

Kite integrates with VS Code for a superior autocomplete experience while coding in Python & JavaScript. With Multi-Line Completions, Kite helps you code faster while staying in flow.


2 Answers

For VSCode: "Search in the settings for "Kite > Codefinder > Enable Line Decoration" and disable it. That helped me." (found on github)

For Atom: "Settings > Packages > Kite > Enable codefinder decoration", disable this.

like image 180
Cidgi359 Avatar answered Oct 18 '22 19:10

Cidgi359


For VSCode: go to settings.json and paste this line to your settings "kite.codefinder.enableLineDecoration": false

it worked for me and that annoying pop-up is gone.

like image 26
Fays Avatar answered Oct 18 '22 20:10

Fays