gpt4 book ai didi

vim - .vimrc 中的 autocmd FileType 是什么?

转载 作者:行者123 更新时间:2023-12-01 08:16:15 25 4
gpt4 key购买 nike

我开始使用 twitvim 并发现 this code code for .vimrc .

但我不确定代码的最后一部分试图做什么。

autocmd FileType twitvim call s:twitvim_my_settings()
function! s:twitvim_my_settings()
set nowrap
endfunction

这是原始代码。我删除了所有 <C-u> , <C-w>j .
""" twitvim
let twitvim_count = 40
nnoremap ,tp :<C-u>PosttoTwitter<CR>
nnoremap ,tf :<C-u>FriendsTwitter<CR><C-w>j
nnoremap ,tu :<C-u>UserTwitter<CR><C-w>j
nnoremap ,tr :<C-u>RepliesTwitter<CR><C-w>j
nnoremap ,tn :<C-u>NextTwitter<CR>
autocmd FileType twitvim call s:twitvim_my_settings()
function! s:twitvim_my_settings()
set nowrap
endfunction

最佳答案

虽然 Kent 的回答是正确且非常详细的,但我想我会提交一个可视化版本。

autocmd FileType twitvim call s:twitvim_my_settings()
|______________________| |__| | |___________________|
| | | |
1 2 3 4

1. Automatically do something when the FileType (the file extension) matches .twitvim
2. call (Vim's way to run a function)
3. Refers to a function local to the current script file
4. The function to be ran

关于vim - .vimrc 中的 autocmd FileType 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20840478/

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