这个很傻。我使用:Obsess -S Session.vim
而不是保存了我的 vim 会话:Obsess Session.vim
,所以现在我-S/ Session.vim
的项目中有一个文件,但无法用 vim 打开它,因为会抛出以下错误
$ vim \-S\ Session.vim
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled May 23 2020 22:02:57)
Garbage after option argument: "-S Session.vim"
尝试 mv 或 cp 会话文件会导致类似的错误
$ mv \-S\ Session.vim Session.vim
mv: missing destination file operand after 'Session.vim'
Try 'mv --help' for more information.
$ mv '"-S Session.vim"' Session.vim
mv: cannot stat '"-S Session.vim"': No such file or directory
$ cp \-S\ Session.vim Session.vim
cp: missing destination file operand after 'Session.vim'
Try 'cp --help' for more information.