Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use bash on mac and one of the aliases is like this

alias gitlog='git --no-pager  log -n 20 --pretty=format:%h%x09%an%x09%ad%x09%s --date=short --no-merges'

However when I do

 :! gitlog

I get

/bin/bash: gitlog: command not found 

I know I can add aliases like this in my .gitconfig

[alias]
    co = checkout
    st = status
    ci = commit
    br = branch
    df = diff

However I don't want to add all my bash aliases to .gitconfig. That is not DRY.

Is there a better solution?

share|improve this question
If the aliases were in the .gitconfig, then you wouldn't need to repeat them in your Bash aliases, and everything that uses git would know them, rather than just Bash. So, DRY is admirable, but there's also SPOT (Single Point Of Truth), and getting your SPOT in the right place means it is easier to be DRY too. – Jonathan Leffler May 29 '11 at 14:34
see: stackoverflow.com/a/9014154/1040358 – kikuchiyo Jan 28 '12 at 17:09

3 Answers

up vote 42 down vote accepted

Bash doesn’t load your .bashrc unless it’s interactive. Use

:set shellcmdflag=-ic

to make Vim’s :! shell behave like your command prompt.

share|improve this answer
Is there a way I can tell vim to execute that command when vim starts. thanks – Nick Vanderbilt Jan 10 '11 at 17:02
edit your .vimrc file (vim ~/.vimrc) and put that in a line there (without the :) – skeept Jan 10 '11 at 17:25
wow I should have tried that first. Looks like time to read a book on vim. thanks. – Nick Vanderbilt Jan 11 '11 at 16:21
1  
My vim didn't recognize this flag, and some searching pointed me to shellcmdflag so if the above answer doesn't work try using shellcmdflag instead of shellcommandflag – Khaja Minhajuddin May 29 '11 at 4:08
5  
@Kevin: there is no way to get the normal behavior of viw with the interactive bash ? (execute the command, wait for any key, come back to vim) – Mayeu Oct 24 '12 at 13:21
show 4 more comments

Note that depending on how your bash dotfiles are configured you may want to use the -l rather than the -i option. This will launch the shell as login shell.

share|improve this answer
2  
dreftymac wrote: "In order to get this to work for me, it was necessary to do -lic option, otherwise vim returned 'command not found'" – dreftymac Sep 26 '12 at 20:12

I don't feel too comfortable with setting the -i option, as it has quite some impact and I am using the shell often from vim. What I'd do instead is something like :!bash -c ". ~/.alias; gitlog"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.