mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	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>)
 |