aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
AgeCommit message (Collapse)Author
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-01-12Updated copyright information.mitchell
2013-12-19Added configurable tab context menus.mitchell
Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`.
2013-10-18Added "Save All" to the menu.mitchell
2013-10-18More LuaDoc updates.mitchell
2013-09-29Added new `ui.dialogs` module for more user-friendly dialog support.mitchell
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings.
2013-09-16Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.mitchell
2013-09-16Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.mitchell
Also removed more unused constants.
2013-09-09Moved buffer IO functions into the `io` module.mitchell
Menus and key bindings do not need `events.INITIALIZED`.
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-08-26Renamed `gui` to `ui` since it's more applicable.mitchell
2013-08-25Renamed `LANGUAGE_MODULE_LOADED` event to `LEXER_LOADED` and reverted r1500.mitchell
"Creating" non-existant modules is a bad idea and causes confusion.
2013-08-24Include Scintilla constants in `buffer`s.mitchell
2013-07-08Renamed Textadept module's "mime_types" to "file_types" and removed config file.mitchell
2013-06-24Consolidated bookmarks module's "goto" functions into a new `goto_mark()`.mitchell
2013-06-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-05-29Load a language context menu based solely on lexer; modules/textadept/menu.luamitchell
2013-05-15Rewrote theme implementation.mitchell
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
2013-04-30More code cleanup.mitchell
2013-04-29More code cleanup.mitchell
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses.
2013-04-26Consolidated the editing module's `grow_selection()` into `enclose_selected()`.mitchell
The former was originally designed to complement the latter.
2013-04-24Renamed `goto_file_in_list()` to `goto_file_found()` and revamped functionality.mitchell
Also changed experimental find incremental API.
2013-04-24Mark recognized errors in compile/run output and added navigation functions.mitchell
2013-04-24Moved `_M.textadept.filter_through` functionality into `editing` module.mitchell
2013-04-24Hide `menubar` and `contextmenu` tables from the API; modules/textadept/menu.luamitchell
2013-04-24Use `buffer.word_chars` for autocompleting words instead of a Lua pattern.mitchell
2013-04-24Renamed `_G.buffer_new()` to `buffer.new()`.mitchell
2013-04-19Added icon to About dialog; modules/textadept/menu.luamitchell
Requires gtdialog r56.
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-03-25Added lfs.dir_foreach() for allowing Find in Files to have a filter.mitchell
Also moved snapopen module into core as io.snapopen().
2013-03-07Updated "About" dialog; modules/textadept/menu.luamitchell
2013-02-26Removed useless gui.dialog() options for fileopen/filesave.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-01Updated parameter LuaDoc.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-11-19Changed Lua code style for tables.mitchell
2012-10-12Fixed ncurses bug in command selection introduced by r1256.mitchell
2012-09-12Documentation overhaul.mitchell
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
2012-09-08Removed `rebuild_command_tables()`; modules/textadept/menu.luamitchell
2012-08-30Show key shortcuts in ncurses `select_command()`; modules/textadept/menu.luamitchell
2012-07-23Disable menus in ncurses for now; modules/textadept/menu.luamitchell
2012-07-21Updated modules/textadept/menu.lua with new API.mitchell
2012-06-22Resize most filteredlists to fit the ncurses screen.mitchell
2012-06-22Updated key commands for ncurses.mitchell
2012-06-06Removed 'gtk-' stock menus and changed 'separator' to ''.mitchell
2012-06-02Fix broken code from ncurses changes; modules/textadept/menu.luamitchell
2012-03-27Translate all messages instead of relying on GTK to translate stock items.mitchell
2012-03-22Updated paths to Manual and LuaDoc in menus and key commands.mitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell