Test whether the point is between matching quotes (emacs lisp)

£可爱£侵袭症+ 提交于 2019-12-06 02:10:31

What you are looking for is syntax-ppss (defined in syntax.el). It returns 10 values, and the 4th tells you whether the point is inside a string.

(eq (nth 1 (text-properties-at (point))) font-lock-string-face)

This checks whether the font of the text at point is recognized as a string (i.e. has the text property face font-lock-string-face).

This looking for a more elegant solution.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!