branch: elpa/clojure-ts-mode
commit b5c1b0787d90851ef291c1b3a878202812d1fe76
Author: Bozhidar Batsov <bozhi...@batsov.dev>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Update a few references to Tree-sitter
---
 README.md          |  8 ++++----
 clojure-ts-mode.el | 12 ++++++------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index 68812ce31a..cf833756b7 100644
--- a/README.md
+++ b/README.md
@@ -4,13 +4,13 @@
 [![License GPL 3][badge-license]][copying]
 [![Lint 
Status](https://github.com/clojure-emacs/clojure-ts-mode/actions/workflows/lint-emacs.yml/badge.svg)](https://github.com/clojure-emacs/clojure-ts-mode/actions/workflows/lint-emacs.yml)
 
-# Clojure Tree-Sitter Mode
+# Clojure Tree-sitter Mode
 
 `clojure-ts-mode` is an Emacs major mode that provides font-lock (syntax
 highlighting), indentation, and navigation support for the
 [Clojure(Script) programming language](http://clojure.org), powered by the
 [tree-sitter-clojure](https://github.com/sogaiu/tree-sitter-clojure)
-[tree-sitter](https://tree-sitter.github.io/tree-sitter/) grammar.
+[Tree-sitter](https://tree-sitter.github.io/tree-sitter/) grammar.
 
 ## Rationale
 
@@ -116,7 +116,7 @@ git clone 
https://github.com/clojure-emacs/clojure-ts-mode.git
 
 Once installed, evaluate `clojure-ts-mode.el` and you should be ready to go.
 
-### Install tree-sitter grammars
+### Install Tree-sitter grammars
 
 > [!NOTE]
 >
@@ -139,7 +139,7 @@ option to install it manually, Please, refer to the 
installation instructions of
 each required grammar and make sure you're install the versions expected. (see
 `clojure-ts-grammar-recipes` for details)
 
-### Upgrading tree-sitter grammars
+### Upgrading Tree-sitter grammars
 
 To reinstall or upgrade Tree-sitter grammars, you can execute:
 
diff --git a/clojure-ts-mode.el b/clojure-ts-mode.el
index 340e01625a..e4ac5e19f8 100644
--- a/clojure-ts-mode.el
+++ b/clojure-ts-mode.el
@@ -17,7 +17,7 @@
 ;; Provides font-lock, indentation, and navigation for the
 ;; Clojure programming language (http://clojure.org).
 
-;; For the tree-sitter grammar this mode is based on,
+;; For the Tree-sitter grammar this mode is based on,
 ;; see https://github.com/sogaiu/tree-sitter-clojure.
 
 ;; Using clojure-ts-mode with paredit or smartparens is highly recommended.
@@ -66,7 +66,7 @@
 (declare-function treesit-node-child-by-field-name "treesit.c")
 
 (defgroup clojure-ts nil
-  "Major mode for editing Clojure code with tree-sitter."
+  "Major mode for editing Clojure code with Tree-sitter."
   :prefix "clojure-ts-"
   :group 'languages
   :link '(url-link :tag "GitHub" 
"https://github.com/clojure-emacs/clojure-ts-mode";)
@@ -89,7 +89,7 @@ itself."
   :package-version '(clojure-ts-mode . "0.1.3"))
 
 (defcustom clojure-ts-ensure-grammars t
-  "When non-nil, ensure required tree-sitter grammars are installed."
+  "When non-nil, ensure required Tree-sitter grammars are installed."
   :safe #'booleanp
   :type 'boolean
   :package-version '(clojure-ts-mode . "0.2.0"))
@@ -1741,7 +1741,7 @@ Forms between BEG and END are aligned according to
     (dolist (recipe clojure-ts-grammar-recipes)
       (let ((grammar (car recipe)))
         (unless (treesit-language-available-p grammar nil)
-          (message "Installing %s tree-sitter grammar" grammar)
+          (message "Installing %s Tree-sitter grammar" grammar)
           ;; `treesit-language-source-alist' is dynamically scoped.
           ;; Binding it in this let expression allows
           ;; `treesit-install-language-gramamr' to pick up the grammar recipes
@@ -1757,7 +1757,7 @@ function can also be used to upgrade the grammars if they 
are outdated."
   (interactive)
   (dolist (recipe clojure-ts-grammar-recipes)
     (let ((grammar (car recipe)))
-      (message "Installing %s tree-sitter grammar" grammar)
+      (message "Installing %s Tree-sitter grammar" grammar)
       (let ((treesit-language-source-alist clojure-ts-grammar-recipes))
         (treesit-install-language-grammar grammar)))))
 
@@ -1932,7 +1932,7 @@ Useful if you want to switch to the `clojure-mode's mode 
mappings."
         ;; nbb scripts are ClojureScript source files
         (add-to-list 'interpreter-mode-alist '("nbb" . 
clojure-ts-clojurescript-mode))
         (clojure-ts--register-novel-modes)))
-  (message "Clojure TS Mode will not be activated as tree-sitter support is 
missing."))
+  (message "Clojure TS Mode will not be activated as Tree-sitter support is 
missing."))
 
 (defvar clojure-ts--find-ns-query
   (treesit-query-compile

Reply via email to