私は 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