mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 4fc1ab779d
			
		
	
	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>)
 |