branch: elpa/swift-mode commit 5675e1f50a36fafebaa5c25cf75f734cbf603a35 Merge: fca914a 8db040e Author: Bozhidar Batsov <bozhidar.bat...@gmail.com> Commit: Bozhidar Batsov <bozhidar.bat...@gmail.com>
Merge pull request #65 from ckruse/fix_64 fix: underscores are word characters (Word constituents) --- swift-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift-mode.el b/swift-mode.el index 81d6553..1d60fc5 100644 --- a/swift-mode.el +++ b/swift-mode.el @@ -591,7 +591,7 @@ You can send text to the REPL process from other buffers containing source. (modify-syntax-entry ?\\ "\\" table) ;; Additional symbols - (modify-syntax-entry ?_ "_" table) + (modify-syntax-entry ?_ "w" table) (modify-syntax-entry ?: "_" table) ;; Comments