这是indexloc提供的服务,不要输入任何密码
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions lisp-extra-font-lock.el
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,11 @@ special variables like plain variables, set this to
"let*"
"letf"
"letf*"
"letrec"
"if-let"
"if-let*"
"when-let"
"when-let*"
"lexical-let"
"lexical-let*"
"multiple-value-bind"
Expand All @@ -244,6 +249,7 @@ special variables like plain variables, set this to
(defcustom lisp-extra-font-lock-defun-functions
'("defun"
"defun*"
"define-inline"
"defmacro"
"defmacro*"
"defsubst"
Expand All @@ -256,7 +262,7 @@ special variables like plain variables, set this to


(defcustom lisp-extra-font-lock-lambda-functions
'("lambda")
'("lambda" "pcase-lambda")
"List of function using same syntax as `lambda' to bind variables."
:type '(repeat string)
:group 'lisp-extra-font-lock)
Expand All @@ -265,6 +271,7 @@ special variables like plain variables, set this to
(defcustom lisp-extra-font-lock-dolist-functions
'("dolist"
"dotimes"
"pcase-dolist"
"cl-dolist"
"cl-dotimes")
"List of function using same syntax as `dolist' to bind variables."
Expand All @@ -273,7 +280,9 @@ special variables like plain variables, set this to


(defcustom lisp-extra-font-lock-bind-first-functions
'("condition-case")
'("condition-case"
"condition-case-no-debug"
"condition-case-unless-debug")
"List of function that bind their first argument."
:type '(repeat string)
:group 'lisp-extra-font-lock)
Expand Down