Skip to content

Commit

Permalink
Require patch-8.2.4053 for vim9script (#11).
Browse files Browse the repository at this point in the history
That patch fixes the autoload mechanism for vim9script.
vim/vim@fe2ef0b
  • Loading branch information
dstein64 committed Feb 14, 2022
1 parent ffa3858 commit de7bc43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/startuptime.vim
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let s:sourcing_event_type = 0
let s:other_event_type = 1

let s:nvim_lua = has('nvim-0.4')
let s:vim9script = has('vim9script')
let s:vim9script = has('vim9script') && has('patch-8.2.4053')

" 's:tfields' contains the time fields.
let s:tfields = ['start', 'elapsed', 'self', 'self+sourced', 'finish']
Expand Down

0 comments on commit de7bc43

Please sign in to comment.