Atom에서 slim만 「emmet」의 필터가 효과가 없다(탭 키를 눌러도 전개되지 않는다)
패키지에 "emmet"를 사용하고 있습니다.
HTML만 배포 가능
HTML만 필터로 아래와 같이 전개할 수 있습니다.
!
탭 키를 누른다
↓↓↓↓
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
이와 같이 전개된다.
slim만 할 수 없다.
sublime이라고 할 수 있고, 왠지 Atom에서는 할 수 없다. .
누군가 부드러운 분, 설정 방법 등 조언하실 수 없습니까?
해결
keymap.cson이라는 파일에,
아래와 같은 설명을 추가하면 전개해 줍니다.
'atom-text-editor[data-grammar="text html basic"]:not([mini]), atom-text-editor[data-grammar~="erb"]:not([mini]), atom-text-editor[data-grammar~="slim"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
상기라면, html, slim, erb의 3종류에 적응시키고 있습니다만,
심플하게 slim 뿐이라면, 아래와 같은 기술로 좋습니다.
'atom-text-editor[data-grammar~="slim"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
keymap.cson이라는 파일은
Keybindings를 연 상태에서 "your keymap file"이라는 링크를 클릭하면 파일이 열립니다.
Reference
이 문제에 관하여(Atom에서 slim만 「emmet」의 필터가 효과가 없다(탭 키를 눌러도 전개되지 않는다)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/katsuobushi/items/db99887f3820118543f8
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
sublime이라고 할 수 있고, 왠지 Atom에서는 할 수 없다. .
누군가 부드러운 분, 설정 방법 등 조언하실 수 없습니까?
해결
keymap.cson이라는 파일에,
아래와 같은 설명을 추가하면 전개해 줍니다.
'atom-text-editor[data-grammar="text html basic"]:not([mini]), atom-text-editor[data-grammar~="erb"]:not([mini]), atom-text-editor[data-grammar~="slim"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
상기라면, html, slim, erb의 3종류에 적응시키고 있습니다만,
심플하게 slim 뿐이라면, 아래와 같은 기술로 좋습니다.
'atom-text-editor[data-grammar~="slim"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
keymap.cson이라는 파일은
Keybindings를 연 상태에서 "your keymap file"이라는 링크를 클릭하면 파일이 열립니다.
Reference
이 문제에 관하여(Atom에서 slim만 「emmet」의 필터가 효과가 없다(탭 키를 눌러도 전개되지 않는다)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/katsuobushi/items/db99887f3820118543f8
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
'atom-text-editor[data-grammar="text html basic"]:not([mini]), atom-text-editor[data-grammar~="erb"]:not([mini]), atom-text-editor[data-grammar~="slim"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
'atom-text-editor[data-grammar~="slim"]:not([mini])':
'tab': 'emmet:expand-abbreviation-with-tab'
Reference
이 문제에 관하여(Atom에서 slim만 「emmet」의 필터가 효과가 없다(탭 키를 눌러도 전개되지 않는다)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/katsuobushi/items/db99887f3820118543f8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)