Andrey Listopadov
Andrey Listopadov
> Thankfully its indent based, and blocks are delimited with end By saying that it is indent based do you mean that it will not compile with incorrect indentation? E.g....
doesn't seem to reproduce
```emacs-lisp (defun aorst/minibuffer-enable-sp () "Enable `smartparens-strict-mode' in the minibuffer, during `eval-expression'." (when (eq this-command 'eval-expression) (setq-local comment-start ";") (sp-local-pair 'minibuffer-pairs "'" nil :actions nil) (sp-local-pair 'minibuffer-pairs "`" nil :actions nil)...
oh, great! Did not knew of that hook, thanks for the tip!
Perhaps this should be documented, and tiket can be resolved?
What about leveraging something like Tree-sitter[1](https://github.com/tree-sitter/tree-sitter),[2](https://github.com/ubolonton/emacs-tree-sitter),[3](https://github.com/karlotness/tree-sitter.el)? I believe it can run both asynchronously and incrementally, and provide great understanding of a lot of various languages
A possible solution was suggested in Emacs chat in telegram: ```emacs-lisp (setq sp-wrap-respect-direction t) (defun sp--wrap-fix-cursor-position (_id action _context) (when (and (eq action 'wrap) (eq (point) ;; position before delimiter...
Yes, I want a toggle that will make it possible to define this behaviour for all pairs. Like `sp-wrap-respect-direction`, makes smartparens respect direction, I want a way of being able...
Answering your question: yes, always
I have a similar problem with ECL 21.2.1 but on Android inside of Termux - Slynk doesn't compile. However, I'm not sure if this is really problem in Sly, ECL,...