rlnt / vscode-keepachangelog

A VSCode extension that provides snippets for markdown files to create a changelog with the ruleset of Keep a Changelog.
GNU Lesser General Public License v3.0
13 stars 3 forks source link

Suggestions cannot be displayed using the "cl" character #10

Open batu1579 opened 1 year ago

batu1579 commented 1 year ago

I used to be able to use the "cl" prefix to get suggestions when using plugins, but recently I've found that I can only use "cl-" to get suggestions. Could you add a setting that triggers suggestions with a custom prefix?

I tried set "keep-a-changelog.triggerCharacter" to false, but that won't trigger any suggestions (unless you use the suggestions shortcuts).

image

image

rlnt commented 1 year ago

This has to do with the engine upgrade I had to make to solve https://github.com/DAmNRelentless/vscode-keepachangelog/issues/9

I already tried implementing a config option for custom prefixes but these snippets are only shown when using something called a "trigger character" and so far, everything I tried wasn't working correctly. It seems that only special symbols can be trigger characters and as the name says, it's only possible to use a single character instead of two or more.

So even when I implement I config option for it, it probably can't support every possible character but I need to take a look at this. My time is just very limited. I'll keep this in mind for the next time I find the time to work on the extension.

batu1579 commented 1 year ago

Thank you for responding so quickly and I look forward to the update

Thank you in advance :)