bash_profile @ 3914c613a920

Moar.
author Steve Losh <steve@stevelosh.com>
date Sun, 23 Sep 2012 18:16:09 -0400
parents (none)
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
}