Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-02-16 | Bug [#2315] Fix undefined macros. Fixes key map for GTK on macOS and Haiku ↵ | Neil | 1 | -0/+2 | |
build. | |||||
2022-02-10 | Replace "OS X' with "macOS". | Neil | 1 | -1/+1 | |
2021-10-12 | Feature [feature-requests:#1416] Use noexcept to mark impossibility of | Neil | 1 | -1/+1 | |
exceptions in static intialisation. | |||||
2021-08-22 | Follow rule-of-zero / rule-of-5 where reasonable by removing standard operators | Neil | 1 | -4/+0 | |
that are not needed. | |||||
2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 1 | -95/+105 | |
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal. | |||||
2021-03-18 | std::optional is a basic vocabulary type that may be used widely so include | Neil | 1 | -0/+1 | |
almost everywhere. | |||||
2021-03-18 | Move assert and debug trace functions into their own header Debugging.h. | Neil | 1 | -2/+1 | |
PLATFORM_ASSERT is used in data structure headers which led to including graphics and windowing APIs in data structure modules. | |||||
2021-03-17 | Extract geometry and colour definitions from Platform.h into src/Geometry.h. | Neil | 1 | -0/+1 | |
2019-04-28 | Declare reading methods as noexcept where reasonable. | Neil | 1 | -1/+1 | |
2019-04-28 | Declare KeyMap::Clear() noexcept as called in destructor. | Neil | 1 | -1/+1 | |
2018-08-29 | Allow read access to the key map. | Kacper Kasper | 1 | -0/+4 | |
Required on Haiku to set up key bindings that include the Cmd modifier. | |||||
2018-05-31 | Allow std::unique_ptr to be used more widely. | Neil | 1 | -0/+1 | |
2018-05-14 | Include <string_view> to allow future use in Platform interface and Unicode. | Neil | 1 | -0/+1 | |
2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -2/+0 | |
interfaces ILexer4 and IDocument. | |||||
2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -1/+1 | |
where it may be needed in the future. | |||||
2015-07-04 | Make std::exception visible to all core code to remove chance that a different | Neil | 1 | -0/+1 | |
tool set will not indirectly include <stdexcept>. | |||||
2014-01-02 | Use a std::map for KeyMap to avoid custom iteration in favour of standard | Neil | 1 | -17/+4 | |
provided functionality. | |||||
2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -1/+1 | |
2013-05-03 | Replacing raw pointers and allocations with std::vector. | nyamatongwe | 1 | -21/+13 | |
2011-07-19 | Integrate OS X key mapping into main key map. | nyamatongwe | 1 | -9/+38 | |
2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+4 | |
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
2005-11-10 | Added selection duplicate command. | nyamatongwe | 1 | -1/+1 | |
2003-10-15 | Added key bindings to key map for functions displaced by rectangular | nyamatongwe | 1 | -24/+24 | |
selection. | |||||
2003-10-03 | Rectangular selection by keyboard from Philippe. | nyamatongwe | 1 | -12/+20 | |
2003-09-20 | Formatting, dates. | nyamatongwe | 1 | -4/+4 | |
2003-05-11 | Addition of CopyText, CopyRange, and LineCopy. | nyamatongwe | 1 | -3/+4 | |
2003-03-28 | Jakub's paragraph movement commands. | nyamatongwe | 1 | -0/+4 | |
2002-11-17 | Jakub Vrána has added a CSS (Cascading Style Sheet) lexer to Scintilla. | nyamatongwe | 1 | -0/+1 | |
This is separate to the HTML lexer and is only invoked for stand-alone CSS files, not for the STYLE section of HTML files. He also made some other additions. There is a Line Duplicate command which is bound to Ctrl+D. PHP lexing has been improved. | |||||
2002-08-02 | Added keyboard commands to go to start and end of display lines. | nyamatongwe | 1 | -0/+4 | |
2002-08-02 | Made Shift+Enter be the same as Enter. | nyamatongwe | 1 | -0/+1 | |
2002-02-12 | Made lexer objects const so they do not show up in map as static / globals. | nyamatongwe | 1 | -1/+1 | |
File specific inline functions marker as static to ensure no bad linking. | |||||
2001-04-30 | Forwarding state of Alt key to key map and using the returned consumed | nyamatongwe | 1 | -0/+4 | |
parameter to see whether to call DefWindowProc. Added word part movement keys to key map even though they conflict with entering characters by number as that can be forced to work by entering Num Lock mode. WM_CHAR control key messages can go into the buffer now if they arrived from being entered by number by detecting when they were not consumed by key down processing. | |||||
2001-03-22 | Patch from James Larcombe to add Ctrl+Shift+BackSpace and Ctrl+Shift+Delete | nyamatongwe | 1 | -0/+2 | |
2001-02-24 | Updated documentation comments from Philippe. | nyamatongwe | 1 | -1/+3 | |
2001-01-28 | Updating copyright notices for 2001. | nyamatongwe | 1 | -1/+1 | |
2000-07-21 | Provide alternative symbols for all features defined in WinDefs.h to allow | nyamatongwe | 1 | -49/+49 | |
for eventual removal of WinDefs.h. | |||||
2000-06-23 | Added Alt+BackSpace as synonym for Undo. | nyamatongwe | 1 | -0/+1 | |
2000-05-21 | Shift+Backspace is same as backspace. | nyamatongwe | 1 | -0/+1 | |
2000-04-28 | Added zoom set and zoom get. | nyamatongwe | 1 | -0/+1 | |
2000-04-18 | Removed PropSet from Accessor interface. | nyamatongwe | 1 | -0/+2 | |
Indenting and horizontal scroll bar messages. Fixed undo grouping bug. Vertical scrolling can be performed with Ctrl+ arrows | |||||
2000-04-07 | Changing code to ensure no warnings are produced by compilers. | nyamatongwe | 1 | -50/+50 | |
2000-03-22 | Split UndoHistory out of CellBuffer. | nyamatongwe | 1 | -20/+25 | |
Fixed coalescing of nodes in the undo history. Added LineCut, LineDelete, LineTranspose, UpperCase and LowerCase keyboard commands and added keys for them. Added UUID lexical class to CPP lexer. | |||||
2000-03-08 | Initial revision | nyamatongwe | 1 | -0/+111 | |