I'm using Emacs with sass-mode and yasnippet to edit .sass files. This is all working great and the snippets are expanding. But since sass-mode requires haml-mode the haml snippets are also loaded when editing sass files. This is rather annoying since the haml snippets are useless in sass.
I've checked my snippets directory for a .yas-parents file and didn't find one. And I've searched through the documentation and elisp code but a setting or function didn't jump out at me. When I run M-x yas-describe-table within a sass buffer I'm showon the expantion tables for both sass and haml.
Ideally I'd like to prevent the haml snippets from loading when opening when working on a sass buffer. But if I could setup some sort of hook to remove the haml table of snippets when sass buffers are loaded that would be good too.
Thanks!