본문 바로가기
HTML CSS

atom의 emmet 의 tab 단축키가 안 먹힐 경우 또는 emmet이 작동 안할 때

by sj0020 2021. 9. 2.

https://github.com/emmetio/emmet-atom/issues/503

 

Tab doesn't work · Issue #503 · emmetio/emmet-atom

Hi, just installed atom and find that I can't TAB, can't expand even by shift+cmd+e, it deletes the word. If I disable the emmet package, TAB works well.

github.com

f you find after installing emmet, tab completion doesn’t work as described in the documentation, go to Atom > Keymap or File > Keymap add the following code, then restart Atom (this fix worked for me):

 

'atom-text-editor:not([mini])':
  'tab': 'emmet:expand-abbreviation-with-tab'

걍 이렇게 추가해준 뒤에 아톰 껐다 다시 켜니까 잘된다!

'HTML CSS' 카테고리의 다른 글

validation check 유효성체크 form 사용  (0) 2022.04.06
CSS Reset  (0) 2021.08.28
절대경로/상대경로  (0) 2021.08.24
form hidden  (0) 2021.08.24
<input> 과 <button> 으로 각각 reset, submit 만들기  (0) 2021.08.22