gpt4 book ai didi

file - vim 将通过 CLI 打开的文件添加到 :e history

转载 作者:行者123 更新时间:2023-12-04 15:14:44 24 4
gpt4 key购买 nike

在 Vim 中默认输入 :e 时并点击向上箭头,它会显示之前使用 :e 打开的文件列表命令。有没有办法添加我通过终端打开的文件 vim <filename>也到这个列表?

最佳答案

一种可能:

au BufEnter * for f in argv() | call histadd( "cmd", "e " . f ) | endfor

解释:
au                                # Autocommand.
BufEnter # Run it after entering a buffer.
* # For any file matching.
for f in argv() # Select files in argument list.
call histadd( "cmd", "e " . f ) # Append to history of ex commands (beginning
# with colon) letter 'e' (of edit) with file name.
endfor # Repeat next loop.

将该命令放入您的 vimrc文件并尝试。

关于file - vim 将通过 CLI 打开的文件添加到 :e history,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8595774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com