clojure-ts-mode icon indicating copy to clipboard operation
clojure-ts-mode copied to clipboard

The next generation Clojure major mode for Emacs, powered by TreeSitter

Results 24 clojure-ts-mode issues
Sort by recently updated
recently updated
newest added

Opening a clojure file with the following function in clojure-ts-mode: ```clojure (defn unescape [s] (-> s (string/replace "&" "&") (string/replace "*" "*") (string/replace "^" "^") (string/replace "_" "_") (string/replace "~"...

bug

We may consider removing recently added native C++ syntax highlighting for Jank (#103), although there is a chance that this syntax will still be supported (see https://github.com/jank-lang/jank/issues/24#issuecomment-2924460595).

While looking at the `clojure-project-dir` functionality, I've noticed that we haven't yet ported any of the `ns` manipulation commands from `clojure-mode` (see https://github.com/clojure-emacs/clojure-mode/blob/master/clojure-mode.el#L2044) Seems we're also missing something like `clojure-find-def`,...

## Expected behavior Executing `C-M-e` (`end-of-defun`) or `C-M-a` (`beginning-of-defun`) from any place inside of a defun navigates to a proper position. ## Actual behavior Point is not moved or moved...

bug