Vscode-markdown: command 'markdown.extention.onEnterKey' not found

Created on 24 Feb 2018  路  15Comments  路  Source: yzhang-gh/vscode-markdown

Enter, backspace, tab is not working. Space is working

screen shot 2018-02-24 at 6 49 12 pm

///////////CONSOLE MESSAGE////////////

screen shot 2018-02-24 at 6 48 55 pm

Most helpful comment

This is because the official markdown extension was renamed in vscode insider build.

Please go to C:\Users\[username]\.vscode-insiders\extensions\yzhang.markdown-all-in-one-1.0.5 (or similar path in Mac)
Open the folder with vscode
Use global search to replace Microsoft.vscode-markdown with vscode.vscode-markdown vscode.markdown-language-features
(There should be 4 files, package.json, .vsixmanifest, print.js and toc.js)

All 15 comments

SOMEBODY PLEASE HELP ME, I USE THIS FEATURE WITH VS CODE - INSIDERS ON A REGULAR BASIS... SO ITS CAUSING INCONVENIENCE....

This is because the official markdown extension was renamed in vscode insider build.

Please go to C:\Users\[username]\.vscode-insiders\extensions\yzhang.markdown-all-in-one-1.0.5 (or similar path in Mac)
Open the folder with vscode
Use global search to replace Microsoft.vscode-markdown with vscode.vscode-markdown vscode.markdown-language-features
(There should be 4 files, package.json, .vsixmanifest, print.js and toc.js)

@neilsustc that worked for me. thank you!

This worked for me in git bash.

cd "/c/Users/vicber/.vscode-insiders/extensions/yzhang.markdown-all-in-one-1.0.5"

grep -Rl 'Microsoft.vscode-markdown' ./ | xargs -n 1 -I % sh -c "ls %; sed -i 's/Microsoft.vscode-markdown/vscode.vscode-markdown/g' %";

It appears to have been renamed again, now it appears to be vscode.markdown-language-features

Another rename. I just pulled the latest Insiders build and it's been renamed to just markdown-language-features

This just hit VSCode stable with the 1.21 update. Can we expect an update for this extension to address the issue? 馃槆

v1.1.0 released 馃槑

I'm having the same problem using _Markdown All in One 1.5.0 (2018.06.24)_

When typing the following keys I get the error command 'markdown.extension.on***Key' not found

  • Backspace
  • Enter
  • Tab

On typing Ctrl+m i get command 'markdown.extension.editing.toggleMath' not found

I reinstalled the extention, restart vscode a few times, doesn't seem to fix it.

Small note: selecting text and pressing backspace does work

@maximebloch Are you using an insider build of VSCode? Given how often it updates and the changes that get made to it, that error often shows up when using it after updating VSCode itself.

I'm running an open source build. I'm including the 'About' of vscode, not sure if this clarifies it?
screenshot_2018-06-23_20-42-53

@maximebloch You're a couple of versions out of date. It's possible the extension is depending on features that were added a version or two ago (1.23 or 1.24). I know that, for me, it's working fine on the latest insider build (on Linux) and version 1.24 (on Windows).

@glek Thank you.

@maximebloch vscode is actively developed, we need to catch up with it 馃槈.

Updating was quite the struggle (some nodejs conflict). I reinstalled vscode to the newest version and everything works fine now, thanks for the help.

This is caused by markdown-all-in-one. Uninstall the extension were help.

Was this page helpful?
0 / 5 - 0 ratings