Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-04-24 | Added automatic folding options. | nyamatongwe | 6 | -5/+151 | |
2013-04-21 | Implement commonly needed folding methods based on code from SciTE. | nyamatongwe | 5 | -27/+192 | |
2013-04-20 | Added to help run cppcheck. | nyamatongwe | 1 | -0/+41 | |
2013-04-19 | * Use SCE_HA_COMMENTBLOCK2, SCE_HA_COMMENTBLOCK3 | kudah | 3 | -27/+70 | |
* Implicit params * «Nice Character-lexing» | |||||
2013-04-19 | Remove unused methods. | nyamatongwe | 7 | -142/+0 | |
2013-04-19 | Using std::fill instead of a loop is much faster. As much as 4x on a large ↵ | nyamatongwe | 9 | -2/+17 | |
block. | |||||
2013-04-19 | Updated changes. | nyamatongwe | 1 | -0/+17 | |
2013-04-18 | Fix clang warning | kudah | 1 | -3/+2 | |
2013-04-18 | Fold indented imports. | kudah | 1 | -8/+39 | |
2013-04-17 | Fixed import folding interfering with indentation folding | kudah | 1 | -2/+14 | |
2013-04-17 | Removed importCurrent | kudah | 1 | -6/+6 | |
2013-04-18 | Ensure properties from earlier files survive: LexCPP defines some common ↵ | nyamatongwe | 1 | -1/+2 | |
properties. | |||||
2013-04-18 | Bug [#1466]. Fix crash on deallocation. | nyamatongwe | 1 | -1/+1 | |
2013-04-17 | Allow Asian code pages to work for DirectWrite when using SC_CHARSET_DEFAULT. | nyamatongwe | 1 | -1/+1 | |
2013-04-17 | Removed dead assignment. | nyamatongwe | 1 | -1/+0 | |
2013-04-13 | Really minor refactor | kudah | 1 | -13/+12 | |
2013-04-12 | * Converted Haskell lexer to a class | kudah | 1 | -125/+235 | |
* Removed external lexer * Haskell lexer now folds imports | |||||
2013-04-17 | Remove method no longer needed due to change from NSTextInput to ↵ | nyamatongwe | 1 | -8/+0 | |
NSTextInputClient. | |||||
2013-04-17 | Commit the current text when switching documents instead of discarding it as | nyamatongwe | 1 | -1/+1 | |
this retains the user's input when they forget to commit. | |||||
2013-04-17 | When switching documents, reset input composition as otherwise get mixture ↵ | nyamatongwe | 3 | -1/+17 | |
of state from both documents. | |||||
2013-04-17 | Disallow undo and redo when not collecting undo as it is likely that the ↵ | nyamatongwe | 1 | -2/+2 | |
document is not in the state at the end of the undo history and performing undo will not be able to return to a previous state. | |||||
2013-04-17 | Switch from implementing NSTextInput to its replacement NSTextInputClient | nyamatongwe | 2 | -8/+32 | |
NSTextInput is slated for deprecation and NSTextInputClient allows the selection of accented characters through pressing and holding the base key. | |||||
2013-04-17 | Implement firstRectForCharacterRange so that composition popups appear near ↵ | nyamatongwe | 1 | -3/+28 | |
insertion. | |||||
2013-04-17 | Restore undo collection after sequence of composition actions by only ↵ | nyamatongwe | 1 | -4/+6 | |
remembering undo collection state when switching to composition, not when composition changed. | |||||
2013-04-17 | When setting composition text, correctly select the indicated text by ↵ | nyamatongwe | 1 | -4/+8 | |
converting range to bytes. | |||||
2013-04-16 | Add indicator INDIC_COMPOSITIONTHICK, a thick low underline, to mimic an | nyamatongwe | 5 | -0/+23 | |
appearance used for Asian language input composition. | |||||
2013-04-16 | Move selections with virtual space more reasonably when real spaces inserted at | nyamatongwe | 1 | -4/+8 | |
their location by converting virtual space to real position changes up to the amount of virtual space. This allows multi-typing to work when two carets are located in virtual space on one line. | |||||
2013-04-15 | Update tests for last change to RunStyles as it no longer throws in FillRange. | nyamatongwe | 1 | -5/+1 | |
2013-04-15 | Existing code fills 0 length ranges and ranges after document end so simply | nyamatongwe | 1 | -2/+2 | |
return instead of throwing exceptions. | |||||
2013-04-15 | RunStyles can be corrupted by filling 0 length ranges and ranges that go ↵ | nyamatongwe | 3 | -0/+56 | |
past end so throw std::invalid_argument exceptions for these conditions. Provide a Check method to validate the consistency of a RunStyles and throw std::runtime_error if corruption is detected. | |||||
2013-04-14 | Adding example file extensions to native file setting so tests work. | nyamatongwe | 4 | -15/+18 | |
2013-04-14 | Add analyze target for clang --analyze. | nyamatongwe | 1 | -1/+4 | |
2013-04-14 | Update doc for [4fb20e]. | nyamatongwe | 1 | -0/+14 | |
2013-04-12 | LexPowerShell fixes and improvements | gentoo90 | 3 | -2/+55 | |
* fix here-string highlighting * add doccomment keyword highlighting * add #region folding | |||||
2013-04-11 | Added tag rel-3-3-1 for changeset d2022a5e4948 | nyamatongwe | 1 | -0/+1 | |
2013-04-10 | Update date. | nyamatongwe | 1 | -0/+3 | |
2013-04-10 | Updating for 3.3.1. | nyamatongwe | 1 | -3/+5 | |
2013-04-10 | Minimized code for SetLineSpacing change. | nyamatongwe | 1 | -6/+1 | |
2013-04-09 | Change log. | nyamatongwe | 1 | -0/+4 | |
2013-04-09 | With DirectWrite, text was drawn at different vertical positions depending ↵ | nyamatongwe | 1 | -0/+6 | |
on which other characters were draw in the same call. Switching to DWRITE_LINE_SPACING_METHOD_UNIFORM fixed this. | |||||
2013-04-09 | Haskell lexer | kudah | 1 | -56/+203 | |
* Fixed line counting * Fixed string escaping * Pragmas ending at start of the line are rejected (GHC only accepts pragmas with the end indented further) * Copied Python's Folder | |||||
2013-04-07 | Fixed few things in haskell lexer | kudah | 1 | -25/+87 | |
* MagicHash now applies to literals. * MagicHash is now only allowed at the end of identifier. * SafeHaskell imports are now highlighted (lexer.haskell.import.safe) * TemplateHaskell quoted names are now highlighted * Constructors promoted to types are now highlighted * Promoted tuples, lists, and operator constructors are now highlighted. * Qualified constructor are now properly highlighted as constructors, not operators. * Capital and qualified names in import lists are now properly highlighted. * A.$b is not properly highlighted as an operator and an identifier, not just operator. * String and preprocessor continuations now work with CRLF. | |||||
2013-04-09 | Merged Cocoa composition fix. | nyamatongwe | 3 | -1/+22 | |
2013-04-09 | Updates to history. | nyamatongwe | 1 | -0/+6 | |
2013-04-09 | Slightly better behaviour for regular expression search in DBCS: ensure end of | nyamatongwe | 1 | -0/+2 | |
match range is not in the middle of a character. | |||||
2013-04-09 | Updating for 3.3.1. | nyamatongwe | 7 | -12/+33 | |
2013-04-09 | Automate updating download links in script. | nyamatongwe | 1 | -0/+19 | |
2013-04-09 | Fix problems with input composition that could stop undo working. | nyamatongwe | 3 | -1/+22 | |
2013-04-06 | Removed references to Carbon platform which is no longer supported. | nyamatongwe | 1 | -4/+2 | |
2013-04-05 | Replacing system calls for determining DBCS character width with own ↵ | nyamatongwe | 1 | -4/+32 | |
implementation to be same as other platforms and allow optimization. |