aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/editing.lua
AgeCommit message (Collapse)Author
2014-01-12Updated copyright information.mitchell
2013-12-18Renamed "hypertext" lexer to "html".mitchell
2013-12-12More LuaDoc updates.mitchell
2013-11-11Updated documentation.mitchell
2013-11-10Disable strip trailing spaces by default.mitchell
It's probably better to have users enable it manually than to do something unexpected.
2013-11-10Updated LuaDoc.mitchell
2013-11-07New ANSI C lexer.mitchell
C/C++ lexer was separated into ANSI C and C++ lexers. Also took the opportunity to use shorter macros in compile/run commands.
2013-10-29Fix `enclose()` to enclose the whole current word; modules/textadept/editing.luamitchell
It used to enclose just the part of the word behind the caret.
2013-10-21More LuaDoc updates.mitchell
2013-10-18Fixed corner case bug in block uncommenting; modules/textadept/editing.luamitchell
The caret is always constrained to the first line when no selection is present.
2013-10-18Fix paragraph selection corner case; modules/textadept/editing.luamitchell
2013-10-18More LuaDoc updates.mitchell
2013-10-09Use an indicator to highlight matching braces.mitchell
2013-10-09More LuaDoc updates.mitchell
2013-09-29Fix error when block commenting in plain text; modules/textadept/editing.luamitchell
2013-09-29Added new `ui.dialogs` module for more user-friendly dialog support.mitchell
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings.
2013-09-27Fixed incorrect constants introduced in r1574; modules/textadept/editing.luamitchell
2013-09-21Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.mitchell
2013-09-18Support multiple selections with `select_word()`; modules/textadept/editing.luamitchell
2013-09-16Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.mitchell
2013-09-16Moved custom markers and indicators into themes and added more properties.mitchell
2013-09-13Updated some LuaDoc.mitchell
2013-09-08Expose marker and indicator numbers for greater customization.mitchell
Removed their respective color settings.
2013-09-06Updated LuaDoc.mitchell
2013-08-31Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup.mitchell
A side effect is more efficient event emission during startup.
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-08-26Renamed `gui` to `ui` since it's more applicable.mitchell
2013-08-24Include Scintilla constants in `buffer`s.mitchell
2013-06-21Do not allow transposing in empty buffer; modules/textadept/editing.luamitchell
2013-06-20Fixed crash when transposing in empty buffer; modules/textadept/editing.luamitchell
2013-06-12`_M.textadept.editing.block_comment()` supports block comment delimiters.mitchell
Also integrated comment strings into `_M.textadept.editing.comment_string` so block commenting works out of the box.
2013-06-12Renamed editing module's `STRIP_WHITESPACE_ON_SAVE` to `STRIP_TRAILING_SPACES`.mitchell
2013-05-15Rewrote theme implementation.mitchell
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
2013-05-20Code cleanup; modules/textadept/editing.luamitchell
2013-05-20Fix caret placement in block comment/uncomment.mitchell
Thanks to Richard Philips.
2013-04-30More code cleanup.mitchell
2013-04-29More code cleanup.mitchell
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses.
2013-04-26Consolidated the editing module's `grow_selection()` into `enclose_selected()`.mitchell
The former was originally designed to complement the latter.
2013-04-25Code and documentation cleanup.mitchell
2013-04-24Moved `_M.textadept.filter_through` functionality into `editing` module.mitchell
2013-04-24Use `buffer.word_chars` for autocompleting words instead of a Lua pattern.mitchell
2013-04-24Changed display of highlighted words; modules/textadept/editing.luamitchell
Indicators are drawn under text and are not translucent anymore. Also, markers are no longer placed on lines.
2013-04-12Updated to Scintilla 3.3.1.mitchell
2013-04-09Fixed bug with highlighting words; modules/textadept/editing.luamitchell
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-03-10Indicator for highlighted words works in ncurses.mitchell
This requires Scinterm hg changeset 40 (7e25b9a35fbd).
2013-01-31Added ability to type over characters like closing braces and quotes.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-01Updated parameter LuaDoc.mitchell
2012-11-20Be consistent with regard to "caret" vs. "current position".mitchell