gpt4 book ai didi

vim - :make in vim? 上的自动保存缓冲区

转载 作者:行者123 更新时间:2023-12-04 05:00:01 29 4
gpt4 key购买 nike

有没有办法在发出 :make 之前自动保存缓冲区?我使用 MacVim 并且 make 绑定(bind)到 Command-B,这非常有帮助,但我似乎无法弄清楚如何在 make 之前编写缓冲区。我查看了所有的 autocmd 事件,似乎没有什么合适的。

有一个 QuickFixCmdPre 应该在 make 之前调用,但似乎无法让它工作:

~/.vimrc

function! AutoSaveOnMake ()
if &modified
write
endif
endfunction

autocmd QuickFixCmdPre *.c :call AutoSaveOnMake()

最佳答案

Vim 有一个内置的设置:

:set autowrite

Write the contents of the file, if it has been modified, on each :next, :rewind, :last, :first, :previous, :stop, :suspend, :tag, :!, :make, CTRL-] and CTRL-^ command; and when a :buffer, CTRL-O, CTRL-I, '{A-Z0-9}, or `{A-Z0-9} command takes one to another file.

关于vim - :make in vim? 上的自动保存缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12077897/

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