aboutsummaryrefslogtreecommitdiff
path: root/core/locale.conf
AgeCommit message (Collapse)Author
2018-01-25Updated copyright year.mitchell
2017-11-10Removed redundant "Select in delimiter" menus and keys.mitchell
They can be auto-detected now.
2017-01-11Fixed localization regression introduced in r2288; core/locale.confmitchell
2017-01-01Use more descriptive header in command selection dialog.mitchell
2016-12-31Updated copyright information.mitchell
2016-11-04Removed MacRoman encoding option, as OSX uses UTF-8 by default.mitchell
2016-07-06Added context to localization messages for easier translation.mitchell
2016-07-04Added timeout prompt for "Find in Files".mitchell
It is now possible to cancel a "Find in Files" search part-way through.
2016-07-04Replaced Lua pattern matching with Regex via Scintilla and TRE.mitchell
As a result, changed `ui.find.lua` to `ui.find.regex` Also removed luautf8 dependency since it is no longer needed. Regex replacements cannot contain embedded Lua code. Jumping to "find in files" results selects those results instead of just jumping to their respective lines.
2016-06-15Allow binary files to be encoded in something else.mitchell
UTF-16 files (and other encodings with null bytes) are initially recognized as binary files (no encoding). Allow encodings to be set for such files after load.
2016-06-15Be more liberal about comments in locale files and use '#' by default.mitchell
2016-06-15Removed explicit detection and use of extinct CR line endings.mitchell
It's quite possible some of Textadept's functions didn't handle them properly anyway.
2016-06-15Renamed "snapopen" to "quick open" in APIs and menus.mitchell
2016-04-16Added menu item and dialog for setting run/compile command arguments.mitchell
2016-04-16Localize "Lua reset" message.mitchell
2016-04-16Fixed spelling error in English-localized messages.mitchell
2016-04-16Find in files should not print the contents of binary files.mitchell
Use placeholder text instead. This is common in Unix tools.
2016-04-07Only show snippet trigger and text in selection dialog.mitchell
2015-12-31Updated copyright date.mitchell
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