Matus Goljer
Matus Goljer
If you are still interested in this, I would need a before/after examples of what is the desired and expected result, for example before: name = [one, |two, three]. after:...
I tried now on Emacs 28.2 and haskell mode 333205066754348b3dd47c5ce834757dd1bbdf48 and all the pairs work correctly with the default smartparens haskell config, including the `{` pair. If there are some...
There's nothing we can do then, this is a behaviour of evil-mode.
Since `TeX-insert-quote` provides its own behaviours, the easiest would be to disable smartparens handling of quotes if you prefer the auctex way. ```emacs-lisp (sp-local-pair 'latex-mode "`" nil :actions nil) (sp-local-pair...
Yea, tags no longer exist
This is related to #868 and will be fixed by narrowing the search context.
I can no longer reproduce this bug.
I can still reproduce this. For string delimiters we will need to somehow find where the context switches. This might be very tricky for non-syntactic pairs :/
Yes, seems to be a good approach @radenling. For `(and (consp i) (car i))` you can use `car-safe` which is a built-in C function doing just that. ```c /* Take...
Seems that this was also happening because before the functions were called `TeX-insert-dollar` and `TeX-insert-quote` and now are renamed to all lower-case. I added the new variants to the list...