wcwhitehead / bootstrap-3-snippets

Bootstrap 3 Snippets for Visual Studio Code
28 stars 45 forks source link

Suggestion does not work on typing bs3 #11

Open DasJott opened 7 years ago

DasJott commented 7 years ago

In Version 1.5.3 it doesn't work.

It may interfere with an other addon.

I type bs3 and there are no suggestions. If I tab, an opening and a closing tag are created.

wcwhitehead commented 7 years ago

What is the filetype you are working with? It is working for me in 1.5.3 using HTML...

DasJott commented 7 years ago

It's an HTML file with html ending. It worked once and now it doesn't anymore.

Am 26.09.2016 16:17 schrieb "William Whitehead" notifications@github.com:

What is the filetype you are working with? It is working for me in 1.5.3 using HTML...

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/wcwhitehead/bootstrap-3-snippets/issues/11#issuecomment-249579412, or mute the thread https://github.com/notifications/unsubscribe-auth/AGAcidin7Ls1YEHA0A-JQoCzj8Dzp1jWks5qt9GkgaJpZM4KGRHz .

wcwhitehead commented 7 years ago

Have you tried disabling your other extensions except for Bootstrap? As you mentioned before, it probably is a conflict with another extension you have installed, but on my machine it's working as expected.

DasJott commented 7 years ago

I have lots of extensions and I use it at work. It would take time, to de- and reinstall all to test. So no, I didn't try that yet. :-/

Am 26.09.2016 17:42 schrieb "William Whitehead" notifications@github.com:

Have you tried disabling your other extensions except for Bootstrap? As you mentioned before, it probably is a conflict with another extension you have installed, but on my machine it's working as expected.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/wcwhitehead/bootstrap-3-snippets/issues/11#issuecomment-249608557, or mute the thread https://github.com/notifications/unsubscribe-auth/AGAciSrYCLfX7g-SX6RPneW0ILvIlck4ks5qt-fjgaJpZM4KGRHz .

ghost commented 7 years ago

Try uninstalling the bootstrap extension and then reinstalling it. Snippets generally don't conflict with other modules as they are just json files.

DasJott commented 7 years ago

It works, if I push Tab button, but I have to know, what to type, because there are no suggestions. bs3-error

DasJott commented 7 years ago

uninstalled and reinstalled this extension. Nothing changed.

DasJott commented 7 years ago

I thought, this output of the development console could be of interest for you...

bs3-bug

DasJott commented 7 years ago

Still no suggestions. So it is pretty useless for me, as long as I don't know every Trigger by myself.

lambdamusic commented 6 years ago

This pull request did it for me: https://github.com/wcwhitehead/bootstrap-3-snippets/pull/38/files

In essence: check what language mode you're using (for me it was django-html) then modify the package.json file accordingly.

Eg:

            {
                "language": "django-html",
                "path": "./snippets/snippets.json"
            },

NOTE: this is a hack so if the package gets updated you'll lose the changes. So unless the owner of this packages makes this a setting or smth like that.. things may break.