VIM 未按预期使用文件的相对路径地址

VIM is not working as expected with relative path address of a file

假设我在我的目录 ~/bin 中,我想打开一个位于 ~/mySetting/commands.txt 中的文件。
因此,当我在终端输入 vim ../mySetting/commands.txt 时,vim 将其作为新目录打开。但是当我输入像 vim ~/mySetting/commands.txt 这样的完整路径时,它会按预期打开它。 VIM 不适用于相对路径吗?? 或者

如果 ~/bin 是指向层次结构中更深层某处的符号链接,则有可能。例如,如果 ~/bin~/.local/share/bin 的符号链接,那么 ../mySetting/commands.txt 将是 ~/.local/share/mySetting/commands.txt.

要测试:ls -l ~/bincd ~/bin && pwd -P && ls -l ../mySetting/commands.txt