aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-02-14Read and write in binary mode for everything.mitchell
2009-02-14Code cleanup.mitchell
2009-02-14Added textadept.context_menu field for a custom popup context menu.mitchell
2009-02-14Removed worthless textadept.popupmenu() function.mitchell
2009-02-14Prompt for file reload if it was modified outside of Textadept.mitchell
2009-02-14Be consistant in hacking around GTK-OSX's handling of 'Alt'; core/ext/keys.luamitchell
2009-02-14Can toggle the showing of 'dot' files in the PM file browser via popupmenu.mitchell
2009-02-14Find in Files should search in 'dot' files; core/ext/find.luamitchell
2009-02-12Treat 'appleevent_odoc' event as a 'uri_dropped' event; core/events.luamitchell
2009-02-12Load dropped directories into the PM file browser; core/ext/pm/file_browser.luamitchell
2009-02-12If filename exists, but cannot be read, do not open it; core/file_io.luamitchell
2009-02-12Removed old Textmate-style snippets; Lua-style ones are the default anyway.mitchell
2009-02-12Use Tab and Shift+Tab for snippets instead of [MODIFIERS]+I.mitchell
2009-02-12Replaced my key_commands.lua with consolidated key_commands_{std,mac}.lua.mitchell
2009-02-12Fixed some corner cases for Find in Files user interface; core/ext/find.luamitchell
2009-02-10Added tag textadept_1.4 for changeset f45cb8542320mitchell
2009-02-10Changed default cursors to prevent an occasional GTK-OSX binary file hang.mitchell
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-08Fixed Paste menu issue with Mac OSX; core/ext/menu.luamitchell
2009-02-08Do not do any find/replace when there is no find text.mitchell
2009-02-08Removed ability to remove PM browsers; src/lua_interface.cmitchell
2009-02-08Do not let GtkComboBoxes have focus; src/textadept.cmitchell
2009-02-08Fix compiler warning; src/textadept.cmitchell
2009-02-08Keep up to 10 items in the find/replace history; src/textadept.cmitchell
2009-02-08Added ability to remove PM browsers; src/lua_interface.cmitchell
2009-02-08Removed buffer:find() function.mitchell
2009-02-08Cleaned up code, used argchecks instead of Lua errors, and enhanced stability.mitchell
Instead of throwing luaL_error() for bad arguments, use luaL_argcheck() and luaL_argerror() for more descriptive messages. Store the 'textadept' table's 'buffers', 'views', 'constants', 'buffer_functions', and 'buffer_properties' tables in the Lua registry and refer to them via metatables so that overwrites are not possible; removed 'rawset' for Lua scripts.
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-05Don't hide the find box on ESC if the command entry has focus; src/textadept.cmitchell
2009-02-05Handle an empty clipboard properly; src/lua_interface.cmitchell
2009-02-05Respond to GtkComboBoxEntry's "changed" event with PM entry activation.mitchell
Since every keypress causes "changed" to fire, the file browser should only populate the PM view if the current filepath is a valid directory.
2009-02-04Ignore find text case with case-insensitive find in files; core/ext/find.luamitchell
2009-02-01Added menu options for changing line endings in buffers.mitchell
2009-01-31Added tag textadept_1.3 for changeset d69e5d1e3cdfmitchell
2009-01-30Moved highlight-braces from core/events.lua to modules/textadept/editing.lua.mitchell
2009-01-30Updated LuaDoc.mitchell
2009-01-29Fixed src/Makefile for compiling Lua.mitchell
2009-01-28Fixed some casts for compilation on 64-bit machines.mitchell
2009-01-27Print messages to a split view instead of switching buffers; core/init.luamitchell
2009-01-27Do not open a non-existant file from _m.textadept.run.goto_error.mitchell
2009-01-27Encapsulate cec_store so it's not global.mitchell
2009-01-27Use a combo entry to either type in or select a PM browser to use.mitchell
2009-01-27Changed cec_store from GtkTreeStore type to GtkListStore.mitchell
2009-01-27Added Find/Replace history; src/textadept.cmitchell
2009-01-27Moved Lua Command Entry code into its own separate section like PM and Find.mitchell
2009-01-26Don't goto_buffer that doesn't exist when loading session; core/file_io.luamitchell
2009-01-26Menu label text is irrelevant for menu actions due to l10n; focus on menu_id.mitchell
2009-01-26Need to "update_ui" after "buffer_new" to fix statusbar glitch; src/textadept.cmitchell
2009-01-26Should be reading and writing in binary mode; core/file_io.luamitchell