aboutsummaryrefslogtreecommitdiff
path: root/core/.pm.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-01-30 10:14:39 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2009-01-30 10:14:39 -0500
commit79ebec80245ef9e67c99bff09d224935c5cb9cea (patch)
tree3ad181cb988663416bad27f532eedc15beb7725f /core/.pm.lua
parent0881a41eb49676daf56a6e403d453d42d7563ccc (diff)
downloadtextadept-79ebec80245ef9e67c99bff09d224935c5cb9cea.tar.gz
textadept-79ebec80245ef9e67c99bff09d224935c5cb9cea.zip
Updated LuaDoc.
Diffstat (limited to 'core/.pm.lua')
-rw-r--r--core/.pm.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/.pm.lua b/core/.pm.lua
index 61ddecc0..bd82bac3 100644
--- a/core/.pm.lua
+++ b/core/.pm.lua
@@ -15,7 +15,7 @@ module('textadept.pm')
-- @field width The width of the project manager.
-- @field cursor The cursor in the project manager (string representation of
-- current GtkTreePath).
-pm = {}
+pm = { entry_text = nil, width = nil, cursor = nil }
--- Focuses the project manager entry.
function focus() end
@@ -25,3 +25,9 @@ function clear() end
--- Requests the project manager to get its contents based on its entry text.
function activate() end
+
+---
+-- Adds a browser prefix to the list of browsers available in the project
+-- manager entry combo box.
+-- @param prefix The text to add.
+function add_browser(prefix) end