Alex Balgavy

Just some stuff about me.

Here's my dotfiles repository.

Check out my blog.

My keys: PGP, SSH

My crypto wallets (BTC, XMR)


What links here:

Grep files from elisp

Two options.

With rgrep, opens separate window:

(rgrep (rx "search string") "shell glob" "/path/to/file")

With counsel-ag, get popup selection:

(counsel-ag (rx "search string") "/path/to/file" (concat "-G " (rx  "filename regex")))