| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  | " Vim filetype plugin file | 
					
						
							| 
									
										
										
										
											2017-08-01 20:44:53 +02:00
										 |  |  | " Language:             Zsh shell script | 
					
						
							|  |  |  | " Maintainer:           Christian Brabandt <cb@256bit.org> | 
					
						
							|  |  |  | " Previous Maintainer:  Nikolai Weibull <now@bitwi.se> | 
					
						
							| 
									
										
										
										
											2024-09-19 18:19:43 +02:00
										 |  |  | " Latest Revision:      2024 Sep 19 | 
					
						
							| 
									
										
										
										
											2017-08-01 20:44:53 +02:00
										 |  |  | " License:              Vim (see :h license) | 
					
						
							|  |  |  | " Repository:           https://github.com/chrisbra/vim-zsh | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if exists("b:did_ftplugin") | 
					
						
							|  |  |  |   finish | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | let b:did_ftplugin = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-06 17:06:04 +00:00
										 |  |  | let s:cpo_save = &cpo | 
					
						
							|  |  |  | set cpo&vim | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  | setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql | 
					
						
							| 
									
										
										
										
											2008-08-06 17:06:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-14 08:19:51 +01:00
										 |  |  | let b:undo_ftplugin = "setl com< cms< fo< " | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 13:18:38 +00:00
										 |  |  | if executable('zsh') && &shell !~# '/\%(nologin\|false\)$' | 
					
						
							| 
									
										
										
										
											2024-09-19 19:34:40 +02:00
										 |  |  |   if exists(':terminal') == 2 | 
					
						
							| 
									
										
										
										
											2023-10-08 19:14:07 +02:00
										 |  |  |     command! -buffer -nargs=1 ZshKeywordPrg silent exe ':term zsh -c "autoload -Uz run-help; run-help <args>"' | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2024-05-06 19:52:53 +02:00
										 |  |  |     command! -buffer -nargs=1 ZshKeywordPrg echo system('MANPAGER= zsh -c "autoload -Uz run-help; run-help <args> 2>/dev/null"') | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |   endif | 
					
						
							| 
									
										
										
										
											2024-09-19 18:19:43 +02:00
										 |  |  |   setlocal keywordprg=:ZshKeywordPrg | 
					
						
							|  |  |  |   let b:undo_ftplugin .= '| setl keywordprg< | sil! delc -buffer ZshKeywordPrg' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  |   if !exists('current_compiler') | 
					
						
							|  |  |  |     compiler zsh | 
					
						
							|  |  |  |   endif | 
					
						
							| 
									
										
										
										
											2024-09-19 18:19:43 +02:00
										 |  |  |   let b:undo_ftplugin .= ' | compiler make' | 
					
						
							| 
									
										
										
										
											2020-03-14 08:19:51 +01:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-29 14:36:24 +01:00
										 |  |  | let b:match_words = '\<if\>:\<elif\>:\<else\>:\<fi\>' | 
					
						
							| 
									
										
										
										
											2011-02-09 17:07:58 +01:00
										 |  |  |       \ . ',\<case\>:^\s*([^)]*):\<esac\>' | 
					
						
							|  |  |  |       \ . ',\<\%(select\|while\|until\|repeat\|for\%(each\)\=\)\>:\<done\>' | 
					
						
							|  |  |  | let b:match_skip = 's:comment\|string\|heredoc\|subst' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-06 17:06:04 +00:00
										 |  |  | let &cpo = s:cpo_save | 
					
						
							|  |  |  | unlet s:cpo_save |