jmurphyau / language-ember-htmlbars

Other
5 stars 2 forks source link

html snippets not working #1

Open bartocc opened 9 years ago

bartocc commented 9 years ago

I believe html snippets from the language-html package should be working when the grammar is set to Ember HTMLBars, but they don't

the only 2 snippets available are legal and lorem and I believe this is related to https://github.com/atom/language-html/issues/61

What do you think ?

timohofmeijer commented 9 years ago

I've got a similar issue where my emmet snippets don’t work.

nogorilla commented 9 years ago

Emmet disables on non-html pages to prevent conflicting with autocomplete. A work is metioned about using ^e to auto-expand.

Another mentioned adding this to keymap.cson and working for them. I've been trying to add htmlbars, ember-htmlbars to the data-grammer without success though

'atom-text-editor[data-grammar="text html handlebars"]:not([mini])':
    'tab': 'emmet:expand-abbreviation-with-tab'
oskarrough commented 9 years ago

Also couldn't figure how to enable emmet with ember-htmlbars but ^e works for now, thanks @nogorilla.