Matthew Newton

Results 27 comments of Matthew Newton

@edi9999 Perhaps you could try matching the literal string and if that fails used the normalized version?

For convenience, here is a direct link to the discussion of the aforementioned bug and patch: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=33794 @Fuco1 I'll defer to your experience but from my perspective it seems to...

+1 for `graphql`. I'm currently using [fence-edit](https://github.com/aaronbieber/fence-edit.el) like this: ```emacs-lisp (add-to-list 'fence-edit-blocks '("graphql[ \t\n]*(?`" "`" graphql)) (bind-key "C-c '" #'fence-edit-dwim) ``` My full config: https://gitlab.com/mnewt/dotemacs/blob/master/.emacs.d/init.el#L2777

Thought of that, but wouldn't that method end up bypassing the buffer patching and point moving algorithm?

The use case I was thinking of is using `apheleia-format-region` to make an `apheleia-format-defun` command. So the latter would pass a region to the former. Perhaps there would be other...

If you want to invoke completion with `tab` then I think that's the correct command. This is how I'm using it and it seems to work well (it wraps the...

Working at the command line: Enumerating them and getting their contents

@arichiardi I agree that a `closh-mode` is desirable and should be pretty easy, as it would be a tiny wrapper on `inf-clojure`. I'm using `inf-clojure` to hack on `closh` and...

For option 1, probably would need to think about Windows differences such as: * backslashes everywhere * PATH with ; instead of : * lack of pty * differences in...