| 
									
										
										
										
											2015-11-17 21:11:09 -06:00
										 |  |  | zsh-syntax-highlighting / highlighters / pattern | 
					
						
							|  |  |  | ------------------------------------------------ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 07:43:03 +00:00
										 |  |  | This is the `pattern` highlighter, that highlights user-defined patterns. | 
					
						
							| 
									
										
										
										
											2015-11-17 21:11:09 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### How to tweak it
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To use this highlighter, associate patterns with styles in the | 
					
						
							| 
									
										
										
										
											2015-11-24 07:27:29 +00:00
										 |  |  | `ZSH_HIGHLIGHT_PATTERNS` associative array, for example in `~/.zshrc`: | 
					
						
							| 
									
										
										
										
											2015-11-17 21:11:09 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 16:12:41 +08:00
										 |  |  | ```zsh | 
					
						
							|  |  |  | # Declare the variable
 | 
					
						
							|  |  |  | typeset -A ZSH_HIGHLIGHT_PATTERNS | 
					
						
							| 
									
										
										
										
											2018-12-12 03:56:56 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-13 16:12:41 +08:00
										 |  |  | # To have commands starting with `rm -rf` in red:
 | 
					
						
							|  |  |  | ZSH_HIGHLIGHT_PATTERNS+=('rm -rf *' 'fg=white,bold,bg=red') | 
					
						
							|  |  |  | ``` | 
					
						
							| 
									
										
										
										
											2015-11-17 21:11:09 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 07:39:44 +00:00
										 |  |  | The syntax for values is the same as the syntax of "types of highlighting" of | 
					
						
							|  |  |  | the zsh builtin `$zle_highlight` array, which is documented in [the `zshzle(1)` | 
					
						
							|  |  |  | manual page][zshzle-Character-Highlighting]. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | [zshzle-Character-Highlighting]: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting |