aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin/tutor.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-08-15 14:56:46 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-08-15 14:56:46 -0400
commit197a5ad376ed7b5b75fb62a91f00b1eadc2bc2c7 (patch)
treec144054da00b7a3691e7bdf287543d3a22fecb62 /runtime/plugin/tutor.vim
parentd8f1acbf9d75171d37973e39eceac750f51e4145 (diff)
parent4fc1ab779dd23416af08f4124d5f72c2c0629e56 (diff)
downloadrneovim-197a5ad376ed7b5b75fb62a91f00b1eadc2bc2c7.tar.gz
rneovim-197a5ad376ed7b5b75fb62a91f00b1eadc2bc2c7.tar.bz2
rneovim-197a5ad376ed7b5b75fb62a91f00b1eadc2bc2c7.zip
Merge pull request #2700 from fmoralesc/vim-tutor-mode
runtime: Include vim-tutor-mode
Diffstat (limited to 'runtime/plugin/tutor.vim')
-rw-r--r--runtime/plugin/tutor.vim6
1 files changed, 6 insertions, 0 deletions
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(<q-args>)