Matus Goljer

Results 399 comments of Matus Goljer

What you say makes sense and in org mode I also often fight the same issue (note that you can `sp-down-sexp` to jump in the `=asd=` pair). I think I...

Do we want to have the newline attached to the killed line or discard it alltogether? I'm not using this setting so I'm not sure what is expected. In either...

Maybe we should do what `kill-whole-line` does as this is pretty much a copy of that functionality.

The code is there to preserve the behaviour of built-on kill-whole-line where it removes the newline. Instead of calling `kill-whole-line` again, we need to use `thing-at-point` to get the line...

Oh, it seems just adding `append-next-kill` might solve the issue. I didn't know such a function existed.

I can't reproduce this. Can you provide a minimal reproducable example. Are you loading the custom org configuration via `(require 'smartparens-config)`?

This is a bit of a confusion and stupid API design. You need to do ```elisp (sp-local-pair 'rust-mode "'" nil :actions nil) ;; nil not :rem ``` `:rem` removes the...

Sorry for taking so much time to get back to this. Your approach seems good, if you have some code it would be best to open a pull request which...

I don't know what it is about R mode but it does some weird stuff to syntax tables :D Anyway the macro has been there pretty much from the start...