Skip to content

Commit

Permalink
Revert "workaround to make company-etags work"
Browse files Browse the repository at this point in the history
This reverts commit 2ff305c.
  • Loading branch information
Chen Bin committed Dec 8, 2015
1 parent 629fc49 commit 5e4f1b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site-lisp/web-mode/web-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -1960,10 +1960,10 @@ another auto-completion with different ac-sources (e.g. ac-php)")

(defvar web-mode-syntax-table
(let ((table (make-syntax-table)))
;; (modify-syntax-entry ?- "_" table)
;; (modify-syntax-entry ?_ "_" table) ;; #563
(modify-syntax-entry ?_ "w" table)
(modify-syntax-entry ?- "w" table)
(modify-syntax-entry ?- "_" table)
(modify-syntax-entry ?_ "_" table) ;; #563
;; (modify-syntax-entry ?_ "w" table)
;; (modify-syntax-entry ?- "w" table)
(modify-syntax-entry ?< "." table)
(modify-syntax-entry ?> "." table)
(modify-syntax-entry ?& "." table)
Expand Down

0 comments on commit 5e4f1b8

Please sign in to comment.