mirror of
				https://github.com/sammy-ette/Hilbish
				synced 2025-08-10 02:52:03 +00:00 
			
		
		
		
	docs: add docs for new functions
This commit is contained in:
		
							parent
							
								
									7ab81a61df
								
							
						
					
					
						commit
						4127396892
					
				@ -2,6 +2,12 @@ alias(cmd, orig) > Sets an alias of `orig` to `cmd`
 | 
			
		||||
 | 
			
		||||
appendPath(dir) > Appends `dir` to $PATH
 | 
			
		||||
 | 
			
		||||
complete(scope, cb) > Registers a completion handler for `scope`.
 | 
			
		||||
A `scope` is currently only expected to be `command.<cmd>`,
 | 
			
		||||
replacing <cmd> with the name of the command (for example `command.git`).
 | 
			
		||||
`cb` must be a function that returns a table of the entries to complete.
 | 
			
		||||
Nested tables will be used as sub-completions.
 | 
			
		||||
 | 
			
		||||
exec(cmd) > Replaces running hilbish with `cmd`
 | 
			
		||||
 | 
			
		||||
goro(fn) > Puts `fn` in a goroutine
 | 
			
		||||
@ -10,6 +16,8 @@ interval(cb, time) > Runs the `cb` function every `time` milliseconds
 | 
			
		||||
 | 
			
		||||
multiprompt(str) > Changes the continued line prompt to `str`
 | 
			
		||||
 | 
			
		||||
prependPath(dir) > Prepends `dir` to $PATH
 | 
			
		||||
 | 
			
		||||
 prompt(str) > Changes the shell prompt to `str`
 | 
			
		||||
There are a few verbs that can be used in the prompt text.
 | 
			
		||||
These will be formatted and replaced with the appropriate values.
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user