bash_profile @ 1b2a92d5dab0

Moar.
author Steve Losh <steve@stevelosh.com>
date Sun, 23 Sep 2012 18:32:44 -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
}