From 4fc1ab779dd23416af08f4124d5f72c2c0629e56 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Mon, 18 May 2015 23:17:39 -0300 Subject: runtime: Include vim-tutor-mode 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. --- runtime/plugin/tutor.vim | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 runtime/plugin/tutor.vim (limited to 'runtime/plugin') diff --git a/runtime/plugin/tutor.vim b/runtime/plugin/tutor.vim new file mode 100644 index 0000000000..1411b1ac63 --- /dev/null +++ b/runtime/plugin/tutor.vim @@ -0,0 +1,6 @@ +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() -- cgit