Skip to content

Instantly share code, notes, and snippets.

@cgsdev0
Created September 5, 2024 21:10
Show Gist options
  • Save cgsdev0/c4352f608d50995234a6ce9ef2a296ed to your computer and use it in GitHub Desktop.
Save cgsdev0/c4352f608d50995234a6ce9ef2a296ed to your computer and use it in GitHub Desktop.
#!/bin/bash
function quote_args() {
SPACER=
while [[ $# -gt 0 ]]; do
printf "%s\"%s\"" "$SPACER" "${1//\"/\\\"}"
shift
SPACER=' '
done
}
function ag() { vim +"Ag $(quote_args "$@")"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment