Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 4012a0d

Browse files
committed
Revert "fix confict with emmet's tab autocompletion #19"
This reverts commit 9b51b18. Users should add it not plugin. Users doesn't use emmet can not use tab.
1 parent 8250735 commit 4012a0d

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,3 +507,16 @@ angular.lowercase(${1:string});
507507
```
508508
angular.uppercase(${1:string});
509509
```
510+
511+
## FAQ
512+
513+
#### Can't I use autocompletion with tab when I installed emmet plugin
514+
515+
See [emmet's document](https://github.com/emmetio/emmet-atom#tab-key)
516+
517+
In your `keymap.cson1, add the following code.
518+
519+
```
520+
'atom-text-editor[data-grammar="text html angular"]:not([mini])':
521+
'tab': 'emmet:expand-abbreviation-with-tab'
522+
```

keymaps/angularjs.cson

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,3 @@
99
# https://atom.io/docs/latest/advanced/keymaps
1010
#'.workspace':
1111
# 'ctrl-alt-o': 'angularjs:toggle'
12-
13-
# fix to confilct with emmet's tab autocompletion
14-
# <https://github.com/angular-ui/AngularJS-Atom/issues/19>
15-
'atom-text-editor[data-grammar="text html angular"]:not([mini])':
16-
'tab': 'emmet:expand-abbreviation-with-tab'

0 commit comments

Comments
 (0)