how to disable kite hint snippet setting in VSCode?

2.6k Views Asked by At

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.

2

There are 2 best solutions below

0
On

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.

2
On

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.