mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
4fc1ab779d
vim-tutor-mode provides a mechanism to write and read interactive tutorials in vim. It's aim is to replace the venerable vimtutor with a more modern system. The plugin's development is maintained at https://github.com/fmoralesc /vim-tutor-mode Closes #2351.
7 lines
202 B
VimL
7 lines
202 B
VimL
if exists('g:loaded_tutor_mode_plugin') || &compatible
|
|
finish
|
|
endif
|
|
let g:loaded_tutor_mode_plugin = 1
|
|
|
|
command! -nargs=? -complete=custom,tutor#TutorCmdComplete Tutor call tutor#TutorCmd(<q-args>)
|