Zulip Chat Archive

Stream: new members

Topic: VS code settings


Bhavik Mehta (Dec 04 2019 at 13:05):

I must have pressed something by accident, but my VS code autocompletion is now showing the score of each suggested term instead of the type (and similarly not showing the description for tactics), how do I get the types back?

Bryan Gin-ge Chen (Dec 04 2019 at 14:48):

What do you mean by score? Can you share a screenshot?

Bhavik Mehta (Dec 04 2019 at 14:50):

pasted image

Bryan Gin-ge Chen (Dec 04 2019 at 14:50):

Oh, it looks like you probably accidentally triggered "Intellisense explain mode" https://github.com/microsoft/vscode/issues/75500 Cmd+/ or Ctrl+/ should turn it off.

Bhavik Mehta (Dec 04 2019 at 14:50):

Ah great, thanks

Bryan Gin-ge Chen (Dec 04 2019 at 14:50):

Or even restarting VS Code.

Kenny Lau (Jul 28 2020 at 09:28):

how does VSCode know whether to trigger comments or intellisense explain mode when I click Ctrl+/?

Shing Tak Lam (Jul 28 2020 at 09:32):

Setting for comments

{
  "key": "ctrl+/",
  "command": "editor.action.commentLine",
  "when": "editorTextFocus && !editorReadonly"
}

setting for explain mode

{
  "key": "ctrl+/",
  "command": "toggleExplainMode",
  "when": "suggestWidgetVisible"
}

aka explain mode when there are suggestions, comments otherwise. (I think)

Kenny Lau (Jul 28 2020 at 09:35):

oh brilliant

Kenny Lau (Jul 28 2020 at 09:35):

question of the day: is "intellisense" intelligent enough to know that nobody likes him?

Shing Tak Lam (Jul 28 2020 at 09:37):

I'm assuming you want it to comment the line all the time? You can just remove the key binding for explain mode.


Last updated: Dec 20 2023 at 11:08 UTC