aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2018-02-24Backport: Fix move-extends-selection mode for rectangular and line selections.Mitchell Foral4-17/+138
Backport of changeset 6458:0a8a766722c0.
2018-02-22Backport: Bug [#1993]. Fix building on Mingw/MSYS to perform file copies and ↵Tobias Kühne2-1/+5
deletions. Backport of changeset 6457:26e7749ba67a.
2018-02-17Backport: For rectangular selections, pressing Home or End now moves the ↵Vicente2-3/+18
caret to the Home or End position instead of the limit of the rectangular selection. Backport of changeset 6456:eaa6c7fa1a81.
2018-02-10Backport: Eliminate calls of Scintilla APIs that have been removed.Neil Hodgson1-3/+0
Backport of changeset 6451:d5eb40fd400d.
2018-02-06Backport: [Bug #1983] Fix double tap word selection on Windows 10 1709 Fall ↵Dimitar Radev2-1/+6
Creators Update. Times of observed mouse events went backwards causing unsigned overflow. Backport of changeset 6449:1280ef150bbb.
2018-02-02Backport: Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil12-21/+75
Backport of changeset 6448:431b814a54a6.
2018-02-01Backport: Templatize RunStyles so it can be over ranges of different types ↵Neil6-75/+100
and contain different style types. Currently only instantiated over <int, int>. Backport of changeset 6445:89d992f380a1.
2018-02-01Backport: Templatize Partitioning so it can hold different types.Neil8-37/+39
Backport of changeset 6444:1bd57324aa36.
2018-01-31Backport: Document bytes argument to SCI_CREATEDOCUMENT.Neil1-0/+3
Backport of changeset 6443:ab4efcbfdae6.
2018-01-26Backport: Extend SplitVector to allow more than 2 billion elements on 64-bit ↵Neil4-52/+52
systems. Backport of changeset 6442:3e3bfe29a819.
2018-01-26Backport: Add documentOption argument to SCI_CREATELOADER.Neil4-11/+27
Backport of changeset 6441:92c8f0f1b3e6.
2018-01-28Backport: Match declaration signature to definition signature.Neil1-1/+1
Backport of changeset 6437:d5975757418c.
2018-01-28Backport: Use std::end when filling arrays as reduces chance of mistake.Neil5-7/+13
Backport of changeset 6436:a366ce1a811e.
2018-01-28Backport: Use std::abs in preference to abs as std::abs is generic and abs ↵Neil2-3/+4
casts to int which may drop information. Backport of changeset 6434:ed27432729c3.
2018-01-22Backport: Make clamp generic so can be used on more types.Neil1-11/+4
Updated comments. Backport based on changeset 6431:e77030fd6411, but modified for C++11.
2018-01-21Backport: Match variable types to method so will build if switched to 64-bit.Neil1-2/+2
Backport of changeset 6430:754319cc6aaa.
2018-01-21Backport: Fix namespace so can build inside Visual C++.Neil1-0/+4
Backport of changeset 6429:5ab7cff298f5.
2018-01-21Backport: Type casts in case Sci::Position and Sci::Line are extended to ↵Neil1-14/+14
64-bits. Use of const where reasonable. Backport of changeset 6428:b250ca7c9896.
2018-01-20Backport: Credit for markdown.properties.Neil1-0/+2
Backport of changeset 6427:1018ec6c3ec4.
2018-01-10Backport: Added Textilosaurus.Neil1-0/+4
Backport of changeset 6424:5246ca55cf24.
2018-01-02Backport: [Bug #1985] Add 'while' keyword to Matlab lexer keywords that ↵John Donoghue2-0/+5
start a fold block * lexers/LexMatlab.cxx (CheckKeywordFoldPoint): add check for while keyword Backport of changeset 6423:0fc72517fb07.
2017-12-14Backport: Added credit for SciTE update.Neil1-0/+1
Backport of changeset 6422:9a21022f5e68.
2017-12-13Backport: Use explicit typedefs instead of deprecated derivation from ↵Greg Smith1-3/+21
std::iterator. This fixes a C4996 / STL4015 warning from Visual C++ 2017.5 that the std::iterator class template is deprecated in C++17. Backport of changeset 6421:fd2f856b8d58.
2017-11-21Backport: Update make dependencies due to splitting off ILoader.h.Neil Hodgson1-89/+107
Backport of changeset 6420:2286dd5fa625.
2017-11-21Backport: Update marshalling of signals from Scintilla, changing deprecated ↵Neil Hodgson3-42/+39
NONE to VOID. Has no effect on clients as NONE was an alias for VOID. Backport of changeset 6419:8760026bba6a.
2017-11-20Backport: Add SCI_GETMOVEEXTENDSSELECTION.Mitchell Foral5-0/+15
Backport of changeset 6418:85205da6ec1b.
2017-11-09Backport: Close autocompletion list for escape and delete on macOS 10.13 as ↵chinhster2-2/+6
the window was emptying but stayed visible. Backport of changeset 6416:ab409d732f0f.
2017-11-05Backport: Stop treating '\' as an escape character in strings.Vicente2-7/+29
Detect character literals and assign SCE_VHDL_STRING to them. Backport of changeset 6415:2407bf63ca01.
2017-11-05Backport: Indent more uniformly with spaces instead of tabs.Vicente1-34/+34
Backport of changeset 6414:5f0b123ccdee.
2017-10-30Backport: Fixed wxWindows -> wxWidgets.Neil1-2/+2
Backport of changeset 6413:dc4b287f474c.
2017-10-26Backport: Fix nested Django tags inside a comment breaking highlighting of ↵Stephan Deibel2-1/+5
rest of file. Backport of changeset 6408:9b831c859b2e.
2017-10-26Backport: Bug [#1979]. Fix Cocoa hang when Scintilla loaded from SMB share ↵Chinh Nguyen2-5/+15
on macOS 10.13. Backport of changeset 6406:c8b0846ddcc2.
2017-10-23Backport: Document style metadata APIs.Neil2-3/+24
Backport of changeset 6405:0849bae316da.
2017-10-16Backport: Use const for interface CharacterIndexer and its implementation ↵Neil3-10/+10
DocumentIndexer. Backport of changeset 6401:fccfa635ff0c.
2017-10-16Backport: Bug [#1975]. Avoid duplicate calls by using inline function ↵Zufu Liu1-5/+6
instead of macro. Backport of changeset 6400:4f1dfd6a7975.
2017-10-15Backport: Bug [#1977]. Folder treats triple-quoted f-strings like ↵Zufu Liu2-3/+7
triple-quoted strings. Backport of changeset 6399:2a06100a1fdc.
2017-10-15Backport: Bug [#1978]. Minor undefined behaviour fixed.Zufu Liu2-1/+5
Backport of changeset 6398:2db0528f34b5.
2017-10-15Backport: Change log.Neil1-0/+1
Backport of changeset 6397:85f99a613e89.
2017-09-25Backport: Avoiding comma operator warnings from Clang in lexers.Neil Hodgson3-5/+15
Backport of changeset 6395:1ca06526aa8e.
2017-09-18Backport: Bug [#1885]. Improve scrolling on macOS 10.12.Neil Hodgson2-8/+19
Backport of changeset 6393:711d6bbf62b6.
2017-09-15Backport: Bug [#1972]. Change encoding used in comments to UTF-8.Zufu Liu4-4/+8
Backport of changeset 6392:dd15228b06e7.
2017-09-14Backport: Normalize whitespace.Zufu Liu5-7/+6
Backport of changeset 6391:9e52beea0fea.
2017-09-14Backport: Remove automatically generated line end whitespace.Zufu Liu3-191/+192
Backport of changeset 6390:51ca7c18e949.
2017-09-13Backport: Bug [#1971]. Fix line selection by clicking in the margin when ↵Neil Hodgson2-0/+6
scrolled. Backport of changeset 6389:96506cab38bd.
2018-03-15Use active Scintilla namespace in curses platform and fix name clashes.mitchell3-34/+33
2018-03-15Use active Scintilla namespace in LPeg lexer.mitchell1-4/+0
2017-09-11Backport: The Scintilla namespace is always active for internal symbols and ↵Neil235-641/+34
for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3.
2017-09-01Backport: Use "Falls through" comments to avoid warnings from GCC 7.1.Neil Hodgson7-0/+9
Backport of changeset 6387:4ad398cbd71f.
2018-03-15Added history for already backported changeset 6385:d04b3417f375.mitchell1-13/+16
Also adjusted newer lexer bugfix positioning.
2017-08-28Backport: Include ILoader.h in public interface to Scintilla framework.Neil Hodgson1-0/+4
Backport of changeset 6384:f569378826ff.