Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-11 | Moved core extension modules into textadept module. | ||
2010-06-11 | Removed _G.textadept. | ||
Created new _SCINTILLA core module. Renamed textadept.constants to _SCINTILLA.constants Renamed textadept.buffer_functions to _SCINTILLA.functions Renamed textadept.buffer_properties to _SCINTILLA.properties Created new gui core module. Renamed textadept._print() to gui._print(). Renamed textadept.check_focused_buffer() to gui.check_focused_buffer(). Renamed textadept.clipboard_text to gui.clipboard_text. Renamed textadept.context_menu to gui.context_menu Renamed textadept.command_entry to gui.command_entry. Renamed textadept.dialog to gui.dialog. Renamed textadept.docstatusbar_text to gui.docstatusbar_text. Renamed textadept.find to gui.find. Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer. Renamed textadept.get_split_table() to gui.get_split_table(). Renamed textadept.gtkmenu() to gui.gtkmenu(). Renamed textadept.goto_view() to gui.goto_view(). Renamed textadept.menubar to gui.menubar. Renamed textadept.print() to gui.print(). Renamed textadept.size to gui.size. Renamed textadept.statusbar_text to gui.statusbar_text. Renamed textadept.switch_buffer() to gui.switch_buffer(). Renamed textadept.title to gui.title. Renamed textadept.buffers to _G._BUFFERS. Renamed textadept.new_buffer() to _G.new_buffer(). Renamed textadept.quit() to _G.quit(). Renamed textadept.reset() to _G.reset(). Renamed textadept.views to _G._VIEWS. Renamed textadept.user_dofile() to _G.user_dofile(). Renamed textadept.iconv to string.iconv. Renamed textadept.session_file to _SESSIONFILE. Renamed appropriate C functions. | |||
2010-06-11 | Renamed textadept.events to events, renamed 'handle' and 'add_handler'. | ||
2010-06-10 | Moved textadept.io into Lua's io table. | ||
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts. | |||
2010-01-07 | Updated copyright to 2010. | ||
2009-07-19 | Updated LuaDoc. | ||
2009-07-19 | Removed [Local {function,table}] documentation from being shown in LuaDoc. | ||
2009-07-13 | Added incremental find. | ||
2009-07-12 | textadept.dialog doesn't support '--text' for 'fileselect'. | ||
CocoaDialog supports this, but gcocoadialog is used now. | |||
2009-07-08 | Replace lua_dialog with gcocoadialog. | ||
2009-07-08 | Extended the event system to include project manager, find, command entry, etc. | ||
2009-05-01 | Eliminated redundant LuaDoc. | ||
2009-04-02 | Display an 'ok-msgbox' on Replace error; core/ext/find.lua | ||
2009-03-07 | Set MARK_FIND_COLOR for all new views rather than just the current one. | ||
2009-03-01 | Ignore null byte for specific Scintilla messages; use buffer:get_text() again. | ||
2009-03-01 | Use buffer:text_range() instead of buffer:get_text() because of trailing '\0'. | ||
2009-02-28 | Use UTF-8 internally and respect platform filename encoding. | ||
Added 'textadept.iconv' function to interface with GLib's g_convert() and set global _CHARSET to be the platform's filename encoding/code page. | |||
2009-02-22 | Added key commands and menu items to navigate 'Find in Files' list. | ||
2009-02-15 | Cleaned up some Lua code. | ||
2009-02-15 | Find in Files marks the double-clicked line; core/ext/find.lua | ||
2009-02-15 | Only use escape sequences in Lua pattern searches; core/ext/find.lua | ||
2009-02-14 | Find in Files should search in 'dot' files; core/ext/find.lua | ||
2009-02-12 | Fixed some corner cases for Find in Files user interface; core/ext/find.lua | ||
2009-02-10 | Moved the textadept.locale table into the globals table. | ||
2009-02-10 | Use a _type field for special _print() buffers' titles instead of 'Untitled'. | ||
2009-02-08 | Do not do any find/replace when there is no find text. | ||
2009-02-08 | Removed buffer:find() function. | ||
2009-02-05 | Fixed a bug and added enhancements to Find in Files. | ||
Double-clicking a search result will open the file in the previous view (if it exists) rather than clobbering the current one. Also added the find text to the output. | |||
2009-02-04 | Ignore find text case with case-insensitive find in files; core/ext/find.lua | ||
2009-01-26 | Added 'Replace All' for just selected text. | ||
2009-01-25 | Fix a 'Replace All' bug and make it undo-able; core/ext/find.lua | ||
2009-01-25 | Replaced str:match with str:find where applicable for speed improvements. | ||
2009-01-25 | goto_file shouldn't depend on _m.textadept.editing.goto_line; core/ext/find.lua | ||
2009-01-25 | Scroll the view back to how it was for 'no results found'; core/ext/find.lua | ||
2009-01-24 | Added Find in Files support. | ||
2009-01-10 | Various improvements to speed and readability of Lua code. | ||
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc. Added more locals to core/ext/keys.lua for speed improvement. Reformatted some Lua modules to the earlier standard committed. | |||
2009-01-08 | Reformatted all C and Lua code to a single standard for each language. | ||
2009-01-03 | Added localization support. | ||
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module. | |||
2009-01-01 | Updated copyright dates for 2009. | ||
2008-12-14 | Fixed find bug when no match is found; core/ext/find.lua | ||
2008-11-11 | Find functionality is mostly handled by Lua now. | ||
2008-06-24 | Fixed bug with '%' in selected text for replacing; core/ext/find.lua | ||
2008-03-03 | Updated copyright notice to include the year 2008. | ||
2008-02-23 | Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog). | ||
2007-08-16 | Fixed 'find previous' bug; core/ext/find.lua | ||
Changeset 15 introduced an 'increment' variable that is normally +/-1 for find next and find prev respectively. However instead of adding the increment for find prev, it subtracts it, effectively adding 1 which is not right. | |||
2007-08-11 | Fixed escapes in replace, added %() sequence; core/ext/find.lua | ||
'%%' is now properly escaped. %() sequence executes Lua code, showing an error dialog if one occured. | |||
2007-08-09 | 'replace_all' doesn't loop infinitely, 'find' more accurate; core/ext/find.lua | ||
'find' has an additional nowrap parameter that 'replace_all' uses so the latter will not loop indefinately if there are still matches in the document. 'find' also sets search_anchor more appropriately based on context so some matches aren't skipped accidentally. | |||
2007-08-06 | Initial import of extension Lua files. | ||