neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

tutor.vim (456B)


      1 " 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 12
      6 
      7 if exists('g:loaded_tutor_mode_plugin') || &compatible
      8    finish
      9 endif
     10 let g:loaded_tutor_mode_plugin = 1
     11 
     12 command! -nargs=? -complete=custom,tutor#TutorCmdComplete Tutor call tutor#TutorCmd(<q-args>)