branch: master
commit 2bb4db0898da30a149fa656dd4a68cb7e670e785
Author: Dmitry Gutov <dgu...@yandex.ru>
Commit: Dmitry Gutov <dgu...@yandex.ru>

    Assign quote syntax to backquotes
    
    Fixes #222
---
 js2-mode.el |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/js2-mode.el b/js2-mode.el
index 627a615..35f24ba 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -1273,6 +1273,7 @@ First match-group is the leading whitespace.")
 (defvar js2-mode-syntax-table
   (let ((table (make-syntax-table)))
     (c-populate-syntax-table table)
+    (modify-syntax-entry ?` "\"" table)
     table)
   "Syntax table used in `js2-mode' buffers.")
 

Reply via email to