2014-02-19 10 views

답변

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)) 
+0

'html-mode' 대신'web-mode'가 아니겠습니까? – leontalbot