File awful/prompt.lua
Author:
Julien Danjou <julien@danjou.info> |
Copyright ©2008 Julien Danjou
Release: v3.3.4
Functions
run (args, textbox, exe_callback, completion_callback, history_path, history_max, done_callback) | Run a prompt in a box. |
Functions
- run (args, textbox, exe_callback, completion_callback, history_path, history_max, done_callback)
-
Run a prompt in a box.
Parameters
- args: A table with optional arguments: fg_cursor, bg_cursor, ul_cursor, prompt, text, selectall .
- textbox: The textbox to use for the prompt.
- exe_callback: The callback function to call with command as argument when finished.
- completion_callback: The callback function to call to get completion.
- history_path: Optional parameter: file path where the history should be saved, set nil to disable history
- history_max: Optional parameter: set the maximum entries in history file, 50 by default
- done_callback: Optional parameter: the callback function to always call without arguments, regardless of whether the prompt was cancelled.