mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 12:09:08 +00:00 
			
		
		
		
	> The {query} has to be percent-escaped in macOS 11.
Just replace `:` to `%3A` work fine.
But add function like this one I find on stackoverflow to encode the entire query string would be more robust.
```bash
urldecode() {
    # urldecode <string>
    local url_encoded="${1//+/ }"
    printf '%b' "${url_encoded//%/\\x}"
}
```
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			436 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			436 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Opens man pages in Dash.app.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#   Sorin Ionescu <sorin.ionescu@gmail.com>
 | 
						|
#
 | 
						|
 | 
						|
function mand {
 | 
						|
  if (( $# > 0 )); then
 | 
						|
    zstyle -s ':prezto:module:osx:man' dash-keyword 'dashkw' || dashkw='manpages'
 | 
						|
    open "dash://$dashkw%3A$1" 2> /dev/null
 | 
						|
    if (( $? != 0 )); then
 | 
						|
      print "$0: Dash is not installed" >&2
 | 
						|
      break
 | 
						|
    fi
 | 
						|
  else
 | 
						|
    print 'What manual page do you want?' >&2
 | 
						|
  fi
 | 
						|
 | 
						|
  unset dashkw
 | 
						|
}
 | 
						|
 | 
						|
mand "$@"
 |