Skip to content

Commit ea01ae7

Browse files
authored
fix: enable treesitter virtual text by default (#396)
* fix: enable treesitter virtual text by default * fix: use an empty list instead of an empty object
1 parent 6193440 commit ea01ae7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/matchup.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ function! s:init_options()
7979

8080
if has('nvim')
8181
call s:init_option('matchup_treesitter_enabled', has('nvim-0.11.2') ? v:true : v:false)
82-
call s:init_option('matchup_treesitter_disabled', {})
82+
call s:init_option('matchup_treesitter_disabled', [])
8383
call s:init_option('matchup_treesitter_include_match_words', v:false)
8484
call s:init_option('matchup_treesitter_enable_quotes', v:true)
85-
call s:init_option('matchup_treesitter_disable_virtual_text', v:true)
85+
call s:init_option('matchup_treesitter_disable_virtual_text', v:false)
8686
call s:init_option('matchup_treesitter_stopline', 400)
8787
endif
8888
endfunction

0 commit comments

Comments
 (0)