Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试在 vim 中保存文件时,我使用 ls 命令查看要保存的文件夹。使用 ls 命令后得到以下输出:
显然这不是文件夹的内容。谁能告诉我为什么会这样以及如何解决它?谢谢 :)
试试这两个命令
:help :ls :!ls
:!ls是在 shell 中调用 ls 命令 == 工作目录中的文件列表。
:!ls
:ls 是一个 Vim 内置命令,它显示缓冲区列表的内容 == 打开文件的列表。
:ls