Estoy tratando de escribir un modo mayor que resalte las cadenas entre comillas triples. Aquí hay un ejemplo mínimo reproducible:
(defconst demo-triple-quoted-string-regex
(rx "\"\"\""
;; After the delimiter, we're a sequence of
;; non-backslashes or blackslashes paired with something.
(*? (or (not (any "\\"))
(seq "\\" anything)))
"\"\"\""))
(defun demo-stringify-triple-quote ()
"Put `syntax-table' property on triple-quoted strings."
(let* ((string-literal (match-string 0))
(string-start-pos (- (point) (length string-literal)))
(string-end-pos (point)))
(unless (nth 4 (syntax-ppss)) ;; not inside comment
(put-text-property string-start-pos string-end-pos
'syntax-table (string-to-syntax "|")))))
(defconst demo-syntax-propertize-function
(syntax-propertize-rules
(demo-triple-quoted-string-regex
(0 (ignore (demo-stringify-triple-quote))))))
(define-derived-mode demo-mode prog-mode "Demo"
"Major mode showing stack overflow question."
(set (make-local-variable 'font-lock-defaults) '(()))
(set (make-local-variable 'syntax-propertize-function)
demo-syntax-propertize-function))
Sin embargo, esto conduce a un comportamiento realmente extraño al modificar el búfer. Aquí está mi contenido de búfer:
dodgy when we put a newline after babel
"""
a
"
babel
"""
x = 1
M-x demo-mode
da resaltado correcto:
pero presionar enter de repente da esto:
¿Qué estoy haciendo mal?
font-lock
syntax-highlighting
Wilfred Hughes
fuente
fuente
forward-sexp
.syntax-ppss
un seguimiento de esto. Echa un vistazo a cómo se hacepython.el
.Respuestas:
Gracias a Politza, y avanzando
python-syntax-stringify
con edebug, tengo esto funcionando. Los cambios fueron:|
solo debe aplicarse al primer y último carácter en la cadena de comillas triples.Código de trabajo:
fuente
ppss
enlet*
y luego nunca usas ese valor?