Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | ||