parinfer-rust-mode icon indicating copy to clipboard operation
parinfer-rust-mode copied to clipboard

Simplifying how you write Lisp

Results 15 parinfer-rust-mode issues
Sort by recently updated
recently updated
newest added

I've forked [parinfer-rust](https://github.com/eraserhd/parinfer-rust) as [parinfer-rust-emacs](https://github.com/justinbarclay/parinfer-rust). I've been maintaining my fork for a while, but I've decided to only support my version to better integrate with Emacs. So, if you're building...

Hi, It looks like parinfer-rust / parinfer-rust-mode doesn't correctly track the context and e.g. writing something like this: ```elisp (map! :n "] E" 'next-error-in-different-file) ``` ... will not parse, saying...

See https://github.com/eraserhd/parinfer-rust/issues/139 `string_delimiter` argument is currently not passed which causes issues when building `parinfer-rust` from `master`

Open up a scratch window, `emacs-lisp-mode`, and enable `parinfer-rust-mode` in `smart` Input ``` (let* ((s ""))) ``` Now try to put a semi-colon into that string. The second I hit...

I'm using parinfer-rust for common lisp with sly. I define function ``` (defun calculate-brick (size color steps) (let* ((png (make-instance 'zpng:png :color-type :truecolor-alpha :width size :height size)) (image (zpng:data-array png)))...

When `.cljs` file is opened in `clojurescript-mode`, parinfer doesn't work. I can see in modeline that it's activated, but none of the parentheses gets automatically inserted. When I manually switch...

## case when typing the code like: ``` (case c (#\; '|;|)) ``` It will be formatted as: ``` (case c #\; '|);) ``` actually we can't enable the parienfer-mode...

Hi there, thanks for this great project; it makes writing Lisps a lot more pleasureful. I've hit a situation where some or all of `racket-mode`, `lsp-mode`, `parinfer-rust-mode`, and the underlying...

When using `parinfer-rust-mode` with `lsp-mode`, sometime the ending delimiters (`)`, `]`, `}`) are not visible to the LSP server. Based on a discussion in the `lsp-mode` ticket, the problem seems...

Hi, I meet this issue with the `indent` and `smart` modes. `|` indicates the cursor. The `中` can be any CJK/emoji/... ``` (func 中|) ``` After hit SPC, Except: ```...