A powerful Org configuration
A small collection of MPD-related tools
annot.el - a global annotator/highlighter for GNU Emacs
Manage perl installations in your $HOME
Emacs for the stubborn martian vimmer
My emacs config
Small experimental language with a license to macro
Emacs Lisp functions for dealing with association lists and hash tables. Inspired by Clojure.
Replace GUI popup menu in Emacs with something more efficient
Analyze data from swim, bike and run activities
startedfacebookresearch/AugLy
started time in 4 minutes
issue commentalphapapa/prism.el
Samples of Modus themes with prism.el
Thanks for your patience. I didn't mean to overlook your messages for so long.
You are welcome! No worries: this is a volunteer effort, plus we have to account for the prevailing conditions. I hope you are doing well.
Those look great! I'm very happy to see Prism mentioned in the manual with example code. Thank you very much.
One thing I notice in those screenshots is that, in the 4-color version, at a certain depth, it seems that the colors stop repeating, and everything deeper is white/black. Assuming that the user would prefer the 4 colors to continue cycling to deeper levels, you could do that by setting Prism to use N colors (I'd generally recommend at least 16), and setting the desaturations and lightens to 0, so the colors wouldn't be modified as they continue cycling.
You did a really great job, especially on the 8- and 16-color versions. The contrast is excellent and the code is so readable!
You are right. That may be because the main foreground (black/white) is one of the four colours and the code at that point just happens to use that? Not sure right now. I had not observed any problem at the time, but I will check again.
Thank you!
-- Protesilaos Stavrou https://protesilaos.com
comment created time in 6 minutes
startedLLNL/zfp
started time in 21 minutes
fork svetlyak40wt/cl-org-sampler
Extracting Common Lisp docstrings as Org-mode documents
fork in 25 minutes
issue commentactions/checkout
Any way to checkout PR from `issue_comment` event?
The only solution I found was to first use the checkout event and then separately use
hubCLI, which is apparently installed by default and which can runhub pr checkout ${pr_num}in order to checkout whatever branch is associated with the PR (after parsing the PR num from the URL).Is there a better way?
@aaronsteers do you even need to parse it? I though the following should do:
hub pr checkout ${{ github.event.issue.number }}
comment created time in 27 minutes
startedStackExchange/blackbox
started time in an hour
startedtre-flip/atp
started time in an hour
push eventclasp-developers/clasp
commit sha 93ffe03c98b6d656422e1e51ead2f95e8f7953fd
Fix python debugger extension filename
push time in an hour
push eventzevlg/telega.el
commit sha 343e73ede87058b0c6161d3f5d086105da91cb95
[enh] Apply client side filtering for initially fetched chats When chats are initially loaded client side messages filtering routines are not applied to chat's `:last_message' resulting in showing (in rootbuf) message that should be ignored
push time in an hour
issue commentrestic/restic
Impossible to backup again on my repository for a snapshot not found
I am still asking; How much time passed between the last successful backup and snapshot was created, and the first time you detected the problem?
The cache is stored in one of several paths depending on your operating system and/or environment variables, see: https://restic.readthedocs.io/en/stable/manual_rest.html#caching - When you find it, it's a folder with a SHA256 hash as the name (same as your repository ID I think).
comment created time in an hour
issue closedtoshism/org-super-links
How to update the cache of IDs->locations after renaming files outside of emacs?
How to update the cache of IDs->locations after renaming files outside of emacs?
closed time in an hour
NightMachinaryissue commenttoshism/org-super-links
How to update the cache of IDs->locations after renaming files outside of emacs?
org-super-links does not keep any cache itself. if you are using org-id I believe it does keep some form of cache though.
Maybe this is useful https://github.com/tkf/org-mode/blob/master/lisp/org-id.el#L443
comment created time in an hour
issue commenttoshism/org-super-links
Could org-super-links works with Ivy?
I don't use Ivy but I don't see why it wouldn't be possible. The search interface is configurable through org-super-links-search-function and there are a few notes about how it could be added here https://github.com/toshism/org-super-links#org-super-links-search-function
If anyone wants to give it a try i'm happy to help advise.
comment created time in an hour
issue closedtoshism/org-super-links
I searched MELPA and found no org-super-links:
https://melpa.org/#/?q=org-super-links
Is this expected?
closed time in 2 hours
salutisissue commenttoshism/org-super-links
Unfortunately it is at the moment. I dropped the ball with getting it added to MELPA. I'll work on that soon.
comment created time in 2 hours
startedsmallstep/cli
started time in 2 hours
issue commentleotaku/flycheck-aspell
How to config flycheck-aspell?
No. All your suggested code snippet can't do the job.
That surprises me. But good that you found something that works for you.
So you want to also have predictive word suggestions from your dictionaries using something like company?
Yes.
Unfortunately, I won’t be able to help you with that.
comment created time in 2 hours
issue commentleotaku/flycheck-aspell
How to config flycheck-aspell?
You probably just need to ensure that the Flyspell package has been loaded, i.e. run (require 'flyspell).
No. All your suggested code snippet can't do the job. I found the following working code snippet from here:
(use-package flyspell :demand t
:config
(use-package
flyspell-correct-helm)
(defun flyspellCompletion()
(flyspell-mode 1)
(set (make-local-variable 'company-backends)
(copy-tree company-backends))
(add-to-list 'company-backends 'company-ispell))
(defun flyspell-most-modes()
(add-hook 'text-mode-hook 'flyspellCompletion)
(add-hook 'prog-mode-hook 'flyspellCompletion)
(dolist (hook '(change-log-mode-hook log-edit-mode-hook))
(add-hook hook (lambda ()
(flyspell-mode -1)))))
(flyspell-most-modes)
:bind (:map flyspell-mode-map
("C-." . flyspell-correct-wrapper)))

So you want to also have predictive word suggestions from your dictionaries using something like company?
Yes.
comment created time in 2 hours
PR opened melpa/melpa
Brief summary of what the package does
A minor mode to keep repositories in sync using the rsync command line tool.
Direct link to the package repository
https://github.com/r-zip/rsync-mode
Your association with the package
I am the primary author. The only other contributor is ajwhite445. @ajwhite445
Relevant communications with the upstream package maintainer
None needed.
Checklist
<!-- Please confirm with x: -->
- [x] The package is released under a GPL-Compatible Free Software License
- [x] I've read CONTRIBUTING.org
- [x] I've used the latest version of package-lint to check for packaging issues, and addressed its feedback
- [x] My elisp byte-compiles cleanly
- [x]
M-x checkdocis happy with my docstrings - [x] I've built and installed the package using the instructions in CONTRIBUTING.org
- [ ] I have confirmed some of these without doing them
<!-- After submitting, please fix any problems the CI reports. -->
pr created time in 2 hours
startedjarun/nnn
started time in 2 hours
startedvifm/vifm
started time in 2 hours
issue commentleotaku/flycheck-aspell
How to config flycheck-aspell?
And see the screenshot below when I click on the middle button:
You probably just need to ensure that the Flyspell package has been loaded, i.e. run (require 'flyspell).
I want to have a drop-down menu, just as we have for command completion with company, which is triggered by...
So you want to also have predictive word suggestions from your dictionaries using something like company? Unfortunately, I do not know of a way to enable something like this reliably.
comment created time in 2 hours
startedgorhom/react-native-animated-tabbar
started time in 2 hours
issue commentalphapapa/org-ql
Issue with org-ql-search and narrowed org subtree
No problem. Since it's very niche and seemingly affecting no one else, please feel free to close it. I will understand. If there are higher priority, more impactful things you can be working on, you should. :)
comment created time in 2 hours
issue commentleotaku/flycheck-aspell
How to config flycheck-aspell?
Could you be more specific with what you dislike about it?
I want to have a drop-down menu which is triggered by the threshold of a specific minimum input character number, say, 3, and then incrementally narrowed down as the input sequence increases.
If you want the menu that is triggered by middle-clicking with your mouse,
Yes.
(define-key global-map [mouse-2] #'flyspell-correct-word)
I tried with the following code:
(add-hook 'after-init-hook #'global-flycheck-mode)
(define-key global-map [mouse-2] #'flyspell-correct-word)
And see the screenshot below:

comment created time in 2 hours
startedMousaZeidBaker/aws-lambda-typing
started time in 2 hours
startedtypicode/json-server
started time in 2 hours
startedfiatjaf/jiq
started time in 2 hours
startedyamafaktory/jql
started time in 2 hours