Skip to content

Commit

Permalink
Add auto complete by tab for emmet
Browse files Browse the repository at this point in the history
  • Loading branch information
borela committed Mar 9, 2018
1 parent af46ca6 commit 71a5507
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Default.sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -257,4 +257,34 @@
"operand": true,
"match_all": true
}]
},{
// Auto complete tags using tab and emmet.
"keys": [ "tab" ],
"command": "expand_abbreviation_by_tab",
"context": [{
"key": "selector",
"operator": "equal",
"operand": "source.jsx - (comment, string, meta.embedded-js.jsx)",
"match_all": true
},{
"key": "selection_empty",
"operator": "equal",
"operand": true,
"match_all": true
},{
"key": "auto_complete_visible",
"operator": "equal",
"operand": false,
"match_all": true
},{
"key": "is_abbreviation",
"operator": "equal",
"operand": true,
"match_all": true
},{
"key": "setting.disable_tab_abbreviations",
"operator": "equal",
"operand": false,
"match_all": true
}]
}]

0 comments on commit 71a5507

Please sign in to comment.