gpt4 book ai didi

Vim:自动命令名称中没有扩展名的特定文件类型?

转载 作者:行者123 更新时间:2023-12-05 02:49:59 25 4
gpt4 key购买 nike

autocommand BufEnter,TextChanged,InsertLeave *.sh Neomake

我试图在没有扩展名的 shellscripts 中实现上述命令的效果。

最佳答案

您可以创建 buffer-local autocommands对于缓冲区,当它的文件类型设置为 Shell 文件类型之一(例如 shbash。)

例如:

autocmd FileType sh,bash autocmd BufEnter,TextChanged,InsertLeave <buffer> Neomake

您还可以使用 filetype plug-in ,将以下内容添加到名为 ~/.vim/ftplugin/bash.vim 的文件中(假设您的 shell 脚本将 'filetype' 设置为 bash):

autocmd BufEnter,TextChanged,InsertLeave <buffer> Neomake

关于Vim:自动命令名称中没有扩展名的特定文件类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63795568/

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