0

Background

VSCode shows suggestions whenever I move the cursor into a function signature. I'm finding this very disruptive, as I use Vim keybindings and it interrupts my ability to move around a file quickly.

I'm looking for a way to configure VSCode to only show suggestions when I press the hotkeys, which my keybindings.json defines as CMD + .

vscode suggestion example

What I've tried so far

I've added these lines to my settings.json but they did not solve my issue:

  "editor.quickSuggestions": {
    "other": false,
    "comments": false,
    "strings": false,
  },

Am I missing something?

Danny Delott
  • 6,756
  • 3
  • 33
  • 57
  • Have you looked at [this question](https://stackoverflow.com/questions/36826198/remove-hover-tip-visual-studio-code/53109133#53109133) or [this one](https://stackoverflow.com/questions/41115285/disable-tooltip-hint-in-visual-studio-code)? – Mihai Chelaru Apr 30 '19 at 22:44
  • 1
    Those are [code actions](https://code.visualstudio.com/docs/editor/refactoring#_code-actions-quick-fixes-and-refactorings). The code actions menu itself should never auto trigger (although a lightbulb will show up if code actions are available). If you are seeing the menu automatically when browsing code, there could be a bug with your vim extension – Matt Bierner May 01 '19 at 18:25

0 Answers0