Arne Brasseur
Arne Brasseur
Hi @gcentauri , doc improvements are always welcome. I'm a long time straight user and haven't had any issues, but I've never migrated a non-chemacs straight setup to chemacs I...
You shouldn't hard code references to .emacs.d. Replace "~/.emacs.d/ae/config.org" With (expand-file-name "config.org" user-emacs-directory)
@xsc could you comment on this? would you consider accepting a PR that changes this behavior? In Depot we now have our own versions of left/right/next all to deal with...
The first question is if it's a bug or a feature. If it's a bug then I think the right thing to do is to add a `rewrite-clj.zip2` namespace with...
What if one wanted to rewrite comments?
Sure, but from a code semantics perspective it's as if these nodes don't exist. These rewrite-clj zipper operations are higher level operations over the lower level plain clojure zipper, that...
That's kind of hard to answer in general. Unless you have a lot of identical inputs I don't see how caching will help you much. It might also not be...
Parseclj is a parse reduce parser, rather that a recursive descent parser. The only place I can imagine you might be able to do something is at the reduce step,...
I would see what you can do to avoid parsing the whole buffer, maybe rerun the parser only on the current top level form. Alternatively look into the treesitter parser,...
Interesting. I just introduced Cask + ert-runner for a.el and quite liked the experience. While I quite like rspec, I always found that doing rspec-like things outside of Ruby never...