gpt4 book ai didi

vim - VIM 中的历史忽略

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

是否有类似于 Bash 的 HISTIGNORE 的选项来从命令历史记录中转储一些无用的行(比如 :wq:help.* )?

如果没有,我认为一个简单的 DIY 方法是手动解析 .viminfo带有正则表达式谓词的文件。是否有特定的 VIM 链接可以将解析与 .viminfo 中的更改同步文件 ?

最佳答案

不幸的是,答案是否定的。但是如果您允许放置 H进入您的输入命令,这也许是可能的。这个怎么样?

https://gist.github.com/5864587

let g:histignore = '^buf:^history'
function! s:h(commandline)
call histdel(':', '^H\s')
let oldhist=&history
try
if len(filter(split(g:histignore, ':'), 'a:commandline =~ v:val')) == 0
call histadd(':', a:commandline)
endif
set history=0
exe a:commandline
catch
echohl ErrorMsg | echomsg v:exception | echohl None
finally
let &history=oldhist
unlet oldhist
endtry
endfunction
command! -nargs=+ H call s:h(<q-args>)

放入这个文件作为你的 ~/.vim/plugin/h.vim
:H buffers

这不存储在 :history , 但
:H ls

这将被存储。

关于vim - VIM 中的历史忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17310432/

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