Matus Goljer
Matus Goljer
So I think this can result in some nice UX improvement, although I'm not sure how straight might predict this. Maybe it can simply print somewhere "Blabla package not found...
> I don't think anyone on the dev team currently uses nodejs. That's probably why things are bad there. I too am quite annoyed with how flycheck interacts with node...
@justinbarclay I already opened a PR you can try that branch out https://github.com/flycheck/flycheck/pull/1944
@UwUnyaa as I linked in the OP, i've also written a package to do that. But it seems clunky and flycheck is a major part of the ecosystem in Emacs...
@wedens Yea, that's another good example. I never really got into nix but I am a huge fanboy.
FWIW there is a usecase for > You'd have to edit your init-file every time you update a package. I've been using some 5 years old helm version because I'm...
v14 was released 8 months ago, I don't know if that's too much time or too little. I only started using it a month ago so jumped right on v14,...
Could be nice if someone would decide to migrate the attachment roots. I personally use `~/data/org-attach` as root for all my attachments (regardless of where is the org file) and...
My files are not called `Notes.org`, would that still work? There's about a hundred org files in the hierarchy so I'm not sure how that's going to work. I've solved...
The best way to do this with somewhat modern Emacs is to use lexical binding: ```emacs-lisp (let ((load--path load-path)) (lambda () (let ((load-path load--path)) your code here ))) ``` This...