Emacs Lisp: Determine Cursor is Inside String/Comment
Check If Cursor is Inside String
(nth 3 (syntax-ppss))
- returns true if cursor is inside a string.
Check If Cursor is Inside Comment
(nth 4 (syntax-ppss))
- returns true if cursor is inside a comment.
(info "(elisp) Parsing Expressions")
thanks to Elias Martenson
[https://plus.google.com/+EliasMartenson/posts]
for feedback.