diff options
author | 2013-04-24 11:23:02 -0400 | |
---|---|---|
committer | 2013-04-24 11:23:02 -0400 | |
commit | 49f5b5d500b19fe3ebeb14d1a4cdcda61f0eab59 (patch) | |
tree | a350c207bae16a89a56604a1368afbadf6846c6f /modules/textadept/menu.lua | |
parent | 36854c6ca8970714a6c672ca8774da4c5e9bd69e (diff) | |
download | textadept-49f5b5d500b19fe3ebeb14d1a4cdcda61f0eab59.tar.gz textadept-49f5b5d500b19fe3ebeb14d1a4cdcda61f0eab59.zip |
Mark recognized errors in compile/run output and added navigation functions.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 2c9c3244..a727b1e0 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -120,6 +120,8 @@ local menubar = { SEPARATOR, {_L['_Run'], m_textadept.run.run}, {_L['_Compile'], m_textadept.run.compile}, + {_L['_Next Error'], {m_textadept.run.goto_error, false, true}}, + {_L['_Previous Error'], {m_textadept.run.goto_error, false, false}}, SEPARATOR, { title = _L['_Adeptsense'], {_L['_Complete Symbol'], m_textadept.adeptsense.complete}, |