aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2014-09-03Added SC_TECHNOLOGY_DIRECTWRITERETAIN mode.Neil5-5/+19
2014-09-03Normalise header inclusion order.Neil1-1/+1
2014-09-03Add BibTeX lexer to OS X project.Neil Hodgson1-0/+4
2014-09-03Remove unused function.Neil Hodgson1-5/+0
2014-09-03Feature [feature-requests:#1071]. BibTeX lexer added.Neil6-0/+341
From Sergiu Dotenco and danselmi.
2014-09-03Normalise header inclusion order.Neil1-2/+2
2014-09-02Change log.Neil1-0/+5
2014-09-01GTK: cache the completion popup windowColomban Wendling1-3/+22
This avoids creating and destroying windows quickly under stress, which may lead to XID collisions. See e.g. https://bugzilla.gnome.org/show_bug.cgi?id=581526 and https://bugzilla.gnome.org/show_bug.cgi?id=590690 Closes [bugs:1649].
2014-08-24Removed comma at end of enum as it caused an error on ↵Neil Hodgson1-1/+1
i686-apple-darwin10-g++-4.2.1.
2014-08-22Change log.Neil1-0/+4
2014-08-22Bug [#613]. Fix folding when "component' before name.Neil1-13/+37
From danselmi.
2014-08-21Updated SourceForge links to the canonical projects/scintilla/.Neil1-4/+4
2014-08-20Bug [#1527]. Support block comments in VHDL.Neil4-11/+73
From danselmi.
2014-08-19Bug [#1636]. Support Visual Studio 2010+ line copy clipboard tag.Neil2-3/+11
2014-08-19Bug [#1645]. Validate position of deletion.Neil1-0/+2
2014-08-18Change log.Neil1-0/+3
2014-08-18Bug [#1639]. Only unregister windows classes registered.Neil2-6/+36
From Holger Stenger.
2014-08-18Bug [#1640]. Remove dead DelChar method.Neil3-9/+1
From Ian Goldby.
2014-08-13Added tag rel-3-5-0 for changeset a431f85e13c9Neil1-0/+1
2014-08-11Handle empty pre-edit string.Neil1-1/+1
From johnsonj.
2014-08-09Change log.Neil1-0/+3
2014-08-09Added registry lexer to Cocoa build.Neil Hodgson1-0/+4
2014-08-09Documented SC_MOD_CHANGETABSTOPS.Neil1-1/+14
2014-08-09Added lexer for registry files.Neil5-0/+450
From nkmathew.
2014-08-09Change log.Neil1-0/+4
2014-08-09Getting ready to release 3.5.0.Neil7-15/+17
2014-08-08Fix leak in ListBox::GetSelection() on GTKColomban Wendling1-2/+4
2014-08-08Change log.Neil1-1/+1
2014-08-08Allow IME to be displayed inline for Korean.Neil1-28/+133
From johnsonj.
2014-08-08Stop using last argument to AddCharUTF from Korean IME code as previus releaseNeil2-5/+5
always used false for last argument so changing mynot be cmpatible. Move maxLenInputIME to superclass where it can be used for all platforms.
2014-08-08Implement explicit tab stops per line.Neil10-4/+290
From Nick Gravgaard.
2014-08-08Remove extra whitespace.Neil1-10/+10
2014-08-06Change log.Neil1-0/+4
2014-08-06Fix the platform scope to work on Linux.Neil1-1/+1
2014-08-06Change log.Neil1-0/+16
2014-08-06Bug [#1635]. Make build on FreeBSD 9.2.Neil1-1/+4
2014-08-06Bug [#1634]. Set qt list icon size to largest icon. Also adds padding on OS X.Neil1-4/+40
2014-08-06Feature [feature-requests:#1065]. Add SCI_* for methods to ↵Neil1-0/+2
ScintillaConstants.py.
2014-08-06Feature [feature-requests:#1064]. Add a get_character method on the document.Neil2-0/+6
2014-08-06Bug [#1633]. Redraw selection after SCI_DELWORDRIGHT.Neil2-0/+6
2014-08-05Create a class to manage pre-edit strings and ensure their resources are freed.Neil1-33/+31
2014-08-05Fix problem where annotations disappeared when SCI_CLEARDOCUMENTSTYLE called.Neil2-0/+4
2014-08-03Made destructor virtual to avoid warnings.Neil1-1/+1
2014-08-01Rust: Slightly refactor/comment the number literal scanning.SiegeLord1-12/+25
One change introduced by this is that the malformed literal is detected a little earlier in some cases than before.
2014-08-02Clang warns for register keyword used in system headers so turn off warning.Neil1-1/+1
2014-08-02Change log.Neil1-0/+4
2014-08-01Support transpose character after {} operatorJohn Donoghue1-1/+4
* lexers/LexMatlab.cxx (ColouriseMatlabOctaveDoc): add check in default state for '}' to allow transpose.
2014-07-30Change log.Neil1-0/+9
2014-07-29Rust: Highlight byte-string literals.SiegeLord3-22/+48
This adds support for two new string literals and one new string literal, corresponding to the existing versions of these. Compared to the originals, the new literals have slightly different escapes and are ASCII only. I've decided to simply add flags to the existing scanners to handle them. New styles had to be added to handle the line spanning string literals. The byte character style was added for consistency.
2014-07-29Rust: Allow escaping naked CR in strings.SiegeLord1-1/+1