may

Results 9 comments of may

I ended up wrapping this in a eval-after-load, otherwise it would stop working after I restarted emacs (because I had previously C-x C-e'd it to get it working when I...

@jasonminsookim I found what I believe to be a reliable solution, although it does require a little bit of command line usage (but no third party apps or permissions). Let...

@NafeeJ Did you ensure that Terminal AND ActivityWatch have Accessiblity permissions? And that Terminal has system events permissions?

See https://github.com/emacsorphanage/git-gutter/issues/226#issuecomment-2067494344 for discussion, and a workaround.

I'd love to, but unfortunately I am currently overcommitted; if this changes I'll be sure to let you know. For future reference, if I was to take this on, I'd...

Apparently `bound-and-true-p` isn't working. I fixed it by replacing the two lines in `git-gutter.el` that referred to `global-linum-mode` with a more explicit check, bypassing `bound-and-true-p`: General: Old: ``` (bound-and-true-p global-linum-mode)...

I would like to just have a place to drop in my website/twitter. "Go here to find out more." kind of deal.

If anyone else runs into this, I found a workaround: 1. Don't escape HTML. 2. Provide a string with the output you want. Eg: ```lisp (setq *escape-html* :attr) ... (head...