누구든지 Emacs Live에서 Hoplon (hl)을 인식하는 방법을 알고 있습니까? 이러한 hl 파일은 clojurescript 파일로 취급되어야합니다.Emacs Live에서 Hoplon (hl)을 인식하는 방법은 무엇입니까?
코멘트 (들)에 명시된 바와 같이
0
A
답변
1
,
(add-to-list 'auto-mode-alist '("\\.hl" . clojurescript-mode))
트릭을 할해야합니다.
2
HTML과 s- 표현식 구문을 모두 사용하는 경우 .cljs.hl
과 .html.hl
확장을 사용하여 이맥스가 구별하는 데 도움이 될 수 있습니다. 그래서 다음과 같은 것을 원할 수 있습니다 :
(add-to-list 'auto-mode-alist '("\\.html\\.hl\\'" . html-mode))
(add-to-list 'auto-mode-alist '("\\.cljs\\.hl\\'" . clojure-mode))
'html-mode' 대신'web-mode'가 아니겠습니까? – leontalbot