hackmdio / vscode-hackmd

The official HackMD VScode extension!
https://marketplace.visualstudio.com/items?itemName=HackMD.vscode-hackmd
MIT License
132 stars 14 forks source link

Double emoji auto-completion #47

Closed gruvw closed 3 years ago

gruvw commented 3 years ago

Hi, it is a bit annoying to have two auto-completion for the emojis:

Screenshot from 2021-02-28 13-27-30

The first one inserts the Unicode character (😊) for the corresponding "tag" and the second one just autocompletes the Markdown syntax for emojis (:blush:). It comes from the :emojisense: extension (dependency).

I found a solution if you encounter the same issue as me. Add "emojisense.unicodeCompletionsEnabled": false to your vscode settings if you want to only keep the Markdown syntax completion or add "emojisense.markupCompletionsEnabled": false if you want to only keep the Unicode insertion of emojis.