bash_profile @ 3612a95576aa

Moar.
author Steve Losh <steve@stevelosh.com>
date Mon, 24 Sep 2012 11:34:30 -0400
parents 3914c613a920
children 1d45e21ca4d7
#!/usr/bin/env bash

# This file contains aliases and functions that duplicate some fish
# functionality, because Vim will use bash as its external command shell.

function a() {
    if [ -f '.agignorevcs' ]; then
        ag -U $*
    else
        ag $*
    fi
}