Skip to content

Instantly share code, notes, and snippets.

@kidd
Last active January 16, 2022 02:08
Show Gist options
  • Save kidd/ccce7836e016687b46d43a16878175af to your computer and use it in GitHub Desktop.
Save kidd/ccce7836e016687b46d43a16878175af to your computer and use it in GitHub Desktop.
e() {
IFS=: read e_file e_line rest <<<"$1"
emacsclient -n +${e_line:-1} "$e_file"
}
rge() {
rg -n $* | fzf --tac | xargs e
}
compdef rge=rg
# rge foo
# rge -t lua function
# rge -t clojure defn test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment