Sergey Chikuyonok
Sergey Chikuyonok
Can you provide a Pull Request with shortcuts that will not be taken by Brackets?
Please provide an example of what you are trying to do
Try to use Ctrl-Alt-Enter
No, right now it’s pretty hard to do so in Brackets
Emmet expands abbreviations for known syntaxes only. You have to add a new syntax into [`snippets.json` file](http://docs.emmet.io/customization/snippets/) and inherit it from `html` syntax. E.g. ``` json { ... "erb": {...
Should be fixed in new version: http://emmet.io/download/coda/
The ultimate solution for this issue is to extend `autocomplete-plus` package for detecting available snippets by prefix. E.g. the workflow should look like this: 1. Emmet overrides Tab key completely...
Check out new alpha of Emmet 2, which is solely an autocomplete+ provider: https://github.com/emmetio/atom-plugin
The next version of Atom plugin will capture abbreviation as you type and act as autocomplete provider (`autocomplete-plus` is bundled with Atom by default), same as new Sublime Text plugin:...
Emmet has a `tabStops` module which able to parse TextMate tabstops and provide offsets and some meta data about them. This is exactly how Emmet deals with LinedMode in Eclipse...