Skip to content

Commit

Permalink
replace other references to tree-sitter-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Feb 19, 2025
1 parent c2a0b57 commit afff792
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions symex-transformations.el
Original file line number Diff line number Diff line change
Expand Up @@ -167,28 +167,28 @@
(symex-define-command symex-emit-backward (count)
"Emit backward, COUNT times."
(interactive "p")
(if tree-sitter-mode
(if (symex-ts-available-p)
(symex-ts-emit-backward count)
(symex-lisp-emit-backward count)))

(symex-define-command symex-emit-forward (count)
"Emit forward, COUNT times."
(interactive "p")
(if tree-sitter-mode
(if (symex-ts-available-p)
(symex-ts-emit-forward count)
(symex-lisp-emit-forward count)))

(symex-define-command symex-capture-backward (count)
"Capture backward, COUNT times."
(interactive "p")
(if tree-sitter-mode
(if (symex-ts-available-p)
(symex-ts-capture-backward count)
(symex-lisp-capture-backward count)))

(symex-define-command symex-capture-forward (count)
"Capture forward, COUNT times."
(interactive "p")
(if tree-sitter-mode
(if (symex-ts-available-p)
(symex-ts-capture-forward count)
(symex-lisp-capture-forward count)))

Expand Down

0 comments on commit afff792

Please sign in to comment.