This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-09-06
Channels
- # announcements (12)
- # asami (3)
- # babashka (59)
- # beginners (20)
- # biff (1)
- # calva (87)
- # cherry (8)
- # clj-kondo (41)
- # clj-together (4)
- # cljdoc (5)
- # cljfx (4)
- # cljs-dev (2)
- # cljsrn (6)
- # clojure (63)
- # clojure-europe (22)
- # clojure-nl (1)
- # clojure-norway (35)
- # clojure-uk (4)
- # clojurescript (5)
- # conjure (2)
- # datalevin (4)
- # datascript (8)
- # datomic (16)
- # events (1)
- # figwheel-main (1)
- # fulcro (9)
- # hyperfiddle (4)
- # introduce-yourself (1)
- # jobs (3)
- # kaocha (10)
- # lambdaisland (2)
- # lumo (7)
- # nbb (1)
- # off-topic (29)
- # pathom (15)
- # re-frame (80)
- # releases (1)
- # remote-jobs (4)
- # shadow-cljs (13)
- # spacemacs (9)
- # sql (25)
- # squint (32)
- # tools-deps (6)
- # uncomplicate (6)
- # xtdb (15)
anyone know of a search buffer like helm-ag only where i can annotate around the search results/links.
often times i have have to go through all items in a search and remember something about all of them... i guess i could add the notes directly to the files.
that might be the easier thing...
You could use Embark, via https://docs.doomemacs.org/latest/modules/completion/vertico/.
In evil mode the key sequence would be:
• SPC /
to initiate the search
• type your query
• C-;
to invoke Embark
• E
to invoke embark-export
That would give you a buffer with the search results. You could then write that to disk. Might need to manually invoke grep-mode
when you open it again to make the links work.
ivy-occur is pretty awesome and I think fits the problem you're describing
apparently you can save the results of helm-ag using C-x C-s (according to reddit)
Thanks @U050CT4HR and @U02N27RK69K I'll have to take a look at ivy-occur and embark. I have been using helm-ag as part of my spacemacs setup. And i recently figured out how to save the search results. But it would be cool to add some information to the list without losing the links. Like i said, i guess i can just add it directly to the file and remove the notes before doing a git commit. I'll try just doing that for a bit and see if i need to look into some other way.