aboutsummaryrefslogtreecommitdiff
path: root/core/locale.conf
AgeCommit message (Collapse)Author
2014-12-31Updated copyright year.mitchell
2014-05-28Removed `textadept.editing.select_indented_block()`.mitchell
2014-05-24Removed Adeptsense in favor of new framework committed in r1735.mitchell
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.
2014-03-26Include my new "lspawn" module by default for spawning processes.mitchell
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`.
2014-01-12Updated copyright information.mitchell
2013-12-12More LuaDoc updates.mitchell
2013-10-18Added "Save All" to the menu.mitchell
2013-06-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-04-26Consolidated the editing module's `grow_selection()` into `enclose_selected()`.mitchell
The former was originally designed to complement the latter.
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-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-02-26Removed useless gui.dialog() options for fileopen/filesave.mitchell
2013-01-20Updated copyright date.mitchell
2012-06-04Added ncurses Find/Replace dialog.mitchell
2012-03-27Removed mentions of GTK stock items in in translation notes.mitchell
2012-03-27Translate all messages instead of relying on GTK to translate stock items.mitchell
2012-03-07Updated contact email address.mitchell
2011-11-23Removed _m.textadept.editing.select_style().mitchell
2011-11-23Added theme utilities, modified light and dark themes, and removed scite theme.mitchell
Added gui.set_theme() and gui.select_theme() theming utilities. All new light and dark themes. Moved old classic themes to the wiki.
2011-09-25Refactored textadept.c and changed Lua interface a bit.mitchell
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense.
2011-09-21Rearranged Tools menu.mitchell
2011-08-22Changed some key commands.mitchell
2011-07-16Added Toggle Fold menu command.mitchell
2011-07-16Removed Lexer menu in favor of 'Buffer->Select Lexer...'.mitchell
2011-07-16Rearranged Buffer and View menus and changed various accelerators.mitchell
2011-07-16Rearranged Edit menu and accelerators.mitchell
2011-07-16Moved Adeptsense commands into Tools menu.mitchell
2011-07-15Fixed accelerator conflict in menu.mitchell
2011-07-15Added menu and keys for moving lines up and down.mitchell
2011-07-14Added Upper and Lower menu commands for selection case.mitchell
2011-07-14Changed menu labels to be more descriptive and added select_command() dialog.mitchell
2011-07-13Refactored key commands and added menu accelerators.mitchell
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module.
2011-07-11Removed label mnemonics from localization keys.mitchell
2011-06-30Localize the labels and buttons in the find GUI frame; src/textadept.cmitchell
2011-06-23Use string constants for event names.mitchell
2011-03-27Change menu caption for snippet's 'Insert' to 'Expand'.mitchell
2011-03-25Snapopen allows multiple files to be selected now.mitchell
2011-03-23Rewrote _m.textadept.snippets module.mitchell
Snippet syntax has changed; see LuaDoc for details.
2011-02-26Add Adeptsense menu options 'Complete Symbol' and 'Show Documentation'.mitchell
2011-01-19Can navigate between bookmarks with a filteredlist.mitchell
2011-01-19Modified Buffer menu options.mitchell
2011-01-13More informative check_focused_buffer() error message.mitchell
2010-12-28Updated copyright information.mitchell
2010-12-23Added filter-through module for shell commands.mitchell
2010-11-24Added key commands and menu options for toggling virtual space.mitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-10-28Display expected error messages in file IO.mitchell
2010-10-15Can highlight all occurances of a word; adapted from Brian Schott.mitchell