blob: b79ba93093aa5cc3384e1ad61af3a5de08c5f28e [file] [log] [blame]
Phạm Bình An3704b5b2025-05-10 21:20:57 +02001" Tutor: New Style Tutor Plugin :h vim-tutor-mode
2" Maintainer: This runtime file is looking for a new maintainer.
3" Contributors: Phạm Bình An <phambinhanctb2004@gmail.com>
4" Original Author: Felipe Morales <hel.sheep@gmail.com>
5" Date: 2025 May 10
6
Yegappan Lakshmanana54816b2024-11-03 10:49:23 +01007if exists('g:loaded_tutor_mode_plugin') || &compatible
8 finish
9endif
10let g:loaded_tutor_mode_plugin = 1
11
Phạm Bình An3704b5b2025-05-10 21:20:57 +020012" Define this variable so that users get cmdline completion.
13if !exists('g:tutor_debug')
14 let g:tutor_debug = 0
15endif
16
Yegappan Lakshmanana54816b2024-11-03 10:49:23 +010017command! -nargs=? -complete=custom,tutor#TutorCmdComplete Tutor call tutor#TutorCmd(<q-args>)