diff options
author | 2012-10-30 20:45:41 -0400 | |
---|---|---|
committer | 2012-10-30 20:45:41 -0400 | |
commit | 91d84c4643618e080e1f9abb70416ada5d03db73 (patch) | |
tree | 4b60592ef4966076423aa02165a4f2cabf8e0bbe /core/gui.lua | |
parent | 8020ef7e08d812ac28d5c5ff12d311d1ee3b39a6 (diff) | |
download | textadept-91d84c4643618e080e1f9abb70416ada5d03db73.tar.gz textadept-91d84c4643618e080e1f9abb70416ada5d03db73.zip |
Continued updating documentation formatting.
Diffstat (limited to 'core/gui.lua')
-rw-r--r-- | core/gui.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/gui.lua b/core/gui.lua index 4bc3da8c..3e0db83e 100644 --- a/core/gui.lua +++ b/core/gui.lua @@ -65,8 +65,8 @@ function gui._print(buffer_type, ...) pcall(_print, buffer_type, ...) end function gui.print(...) gui._print(_L['[Message Buffer]'], ...) end --- --- Shortcut function for `gui.dialog('filteredlist', ...)` with 'Ok' and --- 'Cancel' buttons. +-- Shortcut function for `gui.dialog('filteredlist', ...)` with "Ok" and +-- "Cancel" buttons. -- @param title The title for the filtered list dialog. -- @param columns A column name or list of column names. -- @param items An item or list of items. @@ -157,8 +157,9 @@ local THEME -- themes of the same name in *`_HOME`/themes/*. If the name contains slashes -- ('\' on Windows, '/' otherwise), it is assumed to be an absolute path to a -- theme instead of a theme name. An error is thrown if the theme is not found. --- Any errors in the theme are printed to `io.stderr`. --- @param name The name or absolute path of a theme. If nil, sets the default +-- Any errors in the theme are printed to `io.stderr`. Running Textadept from a +-- terminal is the easiest way to see errors as they occur. +-- @param name The name or absolute path of a theme. If `nil`, sets the default -- theme. -- @name set_theme function gui.set_theme(name) |