我正在使用 Windows gVim,我正在尝试调用命令以在 cygwin 的 bash 上运行。它正在工作,但工作目录每次都设置为 $HOME。是否可以设置为当前文件的目录?
我在我的以下行.vimrc
:
set shell=C:/cygwin/bin/bash
set shellcmdflag=--login\ -c
set shellxquote=\"
我的 中有以下几行.profile
:
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi