Forked from michalmarczyk/clojure-font-lock-setup.el
Created
August 18, 2011 23:55
Revisions
-
michalmarczyk revised this gist
Mar 28, 2010 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,4 +47,7 @@ (add-text-properties slime-repl-prompt-start-mark (point-max) '(font-lock-face slime-repl-prompt-face rear-nonsticky (slime-repl-prompt read-only font-lock-face intangible)))))) -
michalmarczyk revised this gist
Mar 28, 2010 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -46,4 +46,5 @@ (let ((inhibit-read-only t)) (add-text-properties slime-repl-prompt-start-mark (point-max) '(font-lock-face slime-repl-prompt-face rear-nonsticky (font-lock-face read-only intangible)))))) -
michalmarczyk revised this gist
Mar 28, 2010 . 1 changed file with 16 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -30,6 +30,20 @@ (add-hook 'slime-repl-mode-hook (lambda () ;(font-lock-mode nil) (clojure-font-lock-setup) ;(font-lock-mode t) )) (defadvice slime-repl-emit (after sr-emit-ad activate) (with-current-buffer (slime-output-buffer) (add-text-properties slime-output-start slime-output-end '(font-lock-face slime-repl-output-face rear-nonsticky (font-lock-face))))) (defadvice slime-repl-insert-prompt (after sr-prompt-ad activate) (with-current-buffer (slime-output-buffer) (let ((inhibit-read-only t)) (add-text-properties slime-repl-prompt-start-mark (point-max) '(font-lock-face slime-repl-prompt-face rear-nonsticky (font-lock-face read-only)))))) -
michalmarczyk created this gist
Mar 19, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ ;;; all code in this function lifted from the clojure-mode function ;;; from clojure-mode.el (defun clojure-font-lock-setup () (interactive) (set (make-local-variable 'lisp-indent-function) 'clojure-indent-function) (set (make-local-variable 'lisp-doc-string-elt-property) 'clojure-doc-string-elt) (set (make-local-variable 'font-lock-multiline) t) (add-to-list 'font-lock-extend-region-functions 'clojure-font-lock-extend-region-def t) (when clojure-mode-font-lock-comment-sexp (add-to-list 'font-lock-extend-region-functions 'clojure-font-lock-extend-region-comment t) (make-local-variable 'clojure-font-lock-keywords) (add-to-list 'clojure-font-lock-keywords 'clojure-font-lock-mark-comment t) (set (make-local-variable 'open-paren-in-column-0-is-defun-start) nil)) (setq font-lock-defaults '(clojure-font-lock-keywords ; keywords nil nil (("+-*/.<>=!?$%_&~^:@" . "w")) ; syntax alist nil (font-lock-mark-block-function . mark-defun) (font-lock-syntactic-face-function . lisp-font-lock-syntactic-face-function)))) (add-hook 'slime-repl-mode-hook (lambda () (font-lock-mode nil) (clojure-font-lock-setup) (font-lock-mode t)))