, :
M-: (info "(elisp) Syntax Properties") RET
: , , ?
( ) , M-<backspace> 2 "", "\".
, backward-kill-word , , "\", . , , , , .
; , - .
(modify-syntax-entry ?\\ "w")
(setq parse-sexp-lookup-properties t)
(setq syntax-propertize-function 'my-propertize-syntax)
(defun my-propertize-syntax (start end)
"Set custom syntax properties."
(save-excursion
(goto-char start)
(while (re-search-forward "\\w\\\\" end t)
(put-text-property
(1- (point)) (point) 'syntax-table (cons "." ?\\)))))