diff options
author | Guangxiong Lin <[email protected]> | 2022-11-08 21:56:19 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-11-08 21:56:19 +0800 |
commit | 584eb5e984cc4134491452b106adae32aac95c5d (patch) | |
tree | bc80a852affe59202414d06938fa8f1415fed09d /.vim/after | |
parent | fe23196e019f58aacfc21552c9049950aecca691 (diff) | |
download | dotfiles-584eb5e984cc4134491452b106adae32aac95c5d.tar.gz dotfiles-584eb5e984cc4134491452b106adae32aac95c5d.tar.bz2 dotfiles-584eb5e984cc4134491452b106adae32aac95c5d.zip |
Disable markdown buffer complete in asyncomplete.vim
Diffstat (limited to '.vim/after')
-rw-r--r-- | .vim/after/plugin/asyncomplete.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.vim/after/plugin/asyncomplete.vim b/.vim/after/plugin/asyncomplete.vim index 9ede076..193364d 100644 --- a/.vim/after/plugin/asyncomplete.vim +++ b/.vim/after/plugin/asyncomplete.vim @@ -40,6 +40,7 @@ packadd asyncomplete-buffer.vim au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#buffer#get_source_options({ \ 'name': 'buffer', \ 'allowlist': ['*'], + \ 'blocklist': ['markdown'], \ 'completor': function('asyncomplete#sources#buffer#completor'), \ 'config': { \ 'max_buffer_size': 5000000, |