从vim执行的命令不能识别bash命令别名

前端之家收集整理的这篇文章主要介绍了从vim执行的命令不能识别bash命令别名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在mac上使用bash,其中一个别名是这样的
alias gitlog='git --no-pager  log -n 20 --pretty=format:%h%x09%an%x09%ad%x09%s --date=short --no-merges'

但是当我这样做

:! gitlog

我得到

/bin/bash: gitlog: command not found

我知道我可以在我的.gitconfig中添加这样的别名

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

但是我不想将所有的bash别名添加到.gitconfig。这不是干的。

有更好的解决方案吗?

Bash不加载你的.bashrc,除非它是交互式的。使用
:set shellcmdflag=-ic

使Vim的:! shell的行为就像你的命令提示符。

原文链接:https://www.f2er.com/bash/392144.html

猜你在找的Bash相关文章