1

I am trying to create github README in .md file, i can see github actions suggestions but when i try to auto fill by tab, it doesn't work. the same does work files having .js extension

I dont want to copy past by hitting CTRL+ enter and paste from suggestions

Jatin Mehrotra
  • 9,286
  • 4
  • 28
  • 67

1 Answers1

0

Disable Markdown All in One, and it will work or to keep markdown all in one follow these steps:

  • update your keybindings.json (Ctrl+Shift+p)

  • find Preferences: Open Keyboard Shortcuts (JSON)) by adding the following:

    [ { "key": "tab", "command": "markdown.extension.onTabKey", "when": "editorTextFocus && !inlineSuggestionVisible && !editorReadonly && !editorTabMovesFocus && !hasOtherSuggestions && !hasSnippetCompletions && !inSnippetMode && !suggestWidgetVisible && editorLangId == 'markdown'" }, { "key": "tab", "command": "-markdown.extension.onTabKey", "when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus && !hasOtherSuggestions && !hasSnippetCompletions && !inSnippetMode && !suggestWidgetVisible && editorLangId == 'markdown'" } ]

Royer Adames
  • 868
  • 9
  • 13