mirror of
				https://github.com/vim/vim.git
				synced 2025-10-30 09:47:20 -04:00 
			
		
		
		
	Dr. Chip retired some time ago and is no longer maintaining the netrw plugin. However as a runtime plugin distributed by Vim, it important to maintain the netrw plugin in the future and fix bugs as they are reported. So, split out the netrw plugin as an additional package, however include some stubs to make sure the plugin is still loaded by default and the documentation is accessible as well. closes: #16368 Signed-off-by: Luca Saccarola <github.e41mv@aleeas.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
		
			
				
	
	
		
			10 lines
		
	
	
		
			152 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			152 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " Load the netrw package.
 | |
| 
 | |
| if &cp || exists("g:loaded_netrw") || exists("g:loaded_netrwPlugin")
 | |
|   finish
 | |
| endif
 | |
| 
 | |
| packadd netrw
 | |
| 
 | |
| " vim:ts=8 sts=2 sw=2 et
 |