Matus Goljer
Matus Goljer
Sure, this is almost two years old now so the v13 style lint is almost 3 years old. Not much value in this anymore (we switched to styled components anyway...
`sp-rewrap-sexp` :) > Do you plan to add commands to change pairs? `Evil-surround` has a similar `change` function inherited from `surround.vim`. `Smartparens` are good at inserting/manipulating pairs, would it be...
Could be. How would you imagine it should work? I don't know vim nor surround.
This works fine now, we just need to add a test case.
`smartparens-global-mode` should do that already. Or you can add setup function to `after-change-major-mode-hook`. If you want to provide a patch I won't refuse, but this is low priority for me...
The simplest is to put space between `=` and `b`. Unfortunatelly, `=` has "symbol" syntax and so Emacs thinks that `=b` forms a "symbol" (a glorified word of sorts). You...
Oh yes... this is another funny thing with syntax. Because it is punctuation, it travels with the token. Imagine a `,` or `;`, usually you want to move it forward...
`:prefix` and `:suffix` are ment for elements where they have some "syntactic" function, i.e. they are part of the expression, so `,` is a prefix in elisp and `;` is...
This seems to be related / duplicate of #868
And how else would you call the prefix argument? I don't know, prefix argument is rarely supplied from lisp (non-interactively), and when, 99% of the time it means either "repeat...