branch: externals/csharp-mode commit d3b5b18b605ba15bce5216d106b875b8358df191 Author: Jen-Chieh Shen <jcs090...@gmail.com> Commit: GitHub <nore...@github.com>
Ensure langs package for tree-sitter support (#214) --- csharp-tree-sitter.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csharp-tree-sitter.el b/csharp-tree-sitter.el index 310c4fd..3d75a43 100644 --- a/csharp-tree-sitter.el +++ b/csharp-tree-sitter.el @@ -8,7 +8,7 @@ ;; Version : 0.11.0 ;; Keywords : c# languages oop mode ;; X-URL : https://github.com/emacs-csharp/csharp-mode -;; Package-Requires: ((emacs "26.1") (tree-sitter "0.12.1") (tree-sitter-indent "0.1")) +;; Package-Requires: ((emacs "26.1") (tree-sitter "0.12.1") (tree-sitter-indent "0.1") (tree-sitter-langs "0.9.0")) ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -31,6 +31,7 @@ (require 'tree-sitter) (require 'tree-sitter-hl) (require 'tree-sitter-indent) +(require 'tree-sitter-langs) (defvar csharp-mode-syntax-table) (defvar csharp-mode-map)