aboutsummaryrefslogtreecommitdiff
path: root/core/ext/find.lua
AgeCommit message (Collapse)Author
2010-06-11Moved core extension modules into textadept module.mitchell
2010-06-11Removed _G.textadept.mitchell
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-11Renamed textadept.events to events, renamed 'handle' and 'add_handler'.mitchell
2010-06-10Moved textadept.io into Lua's io table.mitchell
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
2010-01-07Updated copyright to 2010.mitchell
2009-07-19Updated LuaDoc.mitchell
2009-07-19Removed [Local {function,table}] documentation from being shown in LuaDoc.mitchell
2009-07-13Added incremental find.mitchell
2009-07-12textadept.dialog doesn't support '--text' for 'fileselect'.mitchell
CocoaDialog supports this, but gcocoadialog is used now.
2009-07-08Replace lua_dialog with gcocoadialog.mitchell
2009-07-08Extended the event system to include project manager, find, command entry, etc.mitchell
2009-05-01Eliminated redundant LuaDoc.mitchell
2009-04-02Display an 'ok-msgbox' on Replace error; core/ext/find.luamitchell
2009-03-07Set MARK_FIND_COLOR for all new views rather than just the current one.mitchell
2009-03-01Ignore null byte for specific Scintilla messages; use buffer:get_text() again.mitchell
2009-03-01Use buffer:text_range() instead of buffer:get_text() because of trailing '\0'.mitchell
2009-02-28Use UTF-8 internally and respect platform filename encoding.mitchell
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-22Added key commands and menu items to navigate 'Find in Files' list.mitchell
2009-02-15Cleaned up some Lua code.mitchell
2009-02-15Find in Files marks the double-clicked line; core/ext/find.luamitchell
2009-02-15Only use escape sequences in Lua pattern searches; core/ext/find.luamitchell
2009-02-14Find in Files should search in 'dot' files; core/ext/find.luamitchell
2009-02-12Fixed some corner cases for Find in Files user interface; core/ext/find.luamitchell
2009-02-10Moved the textadept.locale table into the globals table.mitchell
2009-02-10Use a _type field for special _print() buffers' titles instead of 'Untitled'.mitchell
2009-02-08Do not do any find/replace when there is no find text.mitchell
2009-02-08Removed buffer:find() function.mitchell
2009-02-05Fixed a bug and added enhancements to Find in Files.mitchell
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-04Ignore find text case with case-insensitive find in files; core/ext/find.luamitchell
2009-01-26Added 'Replace All' for just selected text.mitchell
2009-01-25Fix a 'Replace All' bug and make it undo-able; core/ext/find.luamitchell
2009-01-25Replaced str:match with str:find where applicable for speed improvements.mitchell
2009-01-25goto_file shouldn't depend on _m.textadept.editing.goto_line; core/ext/find.luamitchell
2009-01-25Scroll the view back to how it was for 'no results found'; core/ext/find.luamitchell
2009-01-24Added Find in Files support.mitchell
2009-01-10Various improvements to speed and readability of Lua code.mitchell
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-08Reformatted all C and Lua code to a single standard for each language.mitchell
2009-01-03Added localization support.mitchell
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module.
2009-01-01Updated copyright dates for 2009.mitchell
2008-12-14Fixed find bug when no match is found; core/ext/find.luamitchell
2008-11-11Find functionality is mostly handled by Lua now.mitchell
2008-06-24Fixed bug with '%' in selected text for replacing; core/ext/find.luamitchell
2008-03-03Updated copyright notice to include the year 2008.mitchell
2008-02-23Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog).mitchell
2007-08-16Fixed 'find previous' bug; core/ext/find.luamitchell
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-11Fixed escapes in replace, added %() sequence; core/ext/find.luamitchell
'%%' 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.luamitchell
'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-06Initial import of extension Lua files.mitchell