aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2013-05-02For modifier keys, QApplication::keyboardModifiers() instead of ↵nyamatongwe1-11/+11
event->modifiers() due to limitation mentioned in Qt documentation. http://qt-project.org/doc/qt-4.8/qkeyevent.html#modifiers
2013-05-02Removed variable which is no longer used due to change 4520.nyamatongwe1-1/+0
2013-05-01Set mouse tracking to false when widget is hiddenJohn Ehresman1-0/+3
2013-05-01Monitor rect's top right is not necessarily 0, 0John Ehresman1-10/+8
2013-05-02Feature: [feature-requests:#988]. Cocoa support for font quality.nyamatongwe4-0/+141
From Mark Yen.
2013-05-01Removed SVector.h from Xcode project.nyamatongwe1-4/+0
2013-05-01Removed SVector.h and all references as it is no longer used.nyamatongwe8-148/+21
2013-05-01Replacing raw pointers and allocations with std::vector and std::string.nyamatongwe3-53/+59
2013-05-01Replacing raw pointer and allocation with std::string.nyamatongwe1-47/+16
2013-05-01Replacing raw pointer and allocation with std::vector.nyamatongwe1-4/+2
2013-04-21* Fixed a bug when a dashes-only comment double-counted a line and could ↵kudah3-76/+150
hang the editor * Comments inside pragmas are now highlighted * Reserved operators are now highlighted
2013-04-30Bug: [#1468]. Latex highlighting breaks Unicode characters if preceeded by \.nyamatongwe1-3/+3
From Colomban Wendling.
2013-04-29Suppress a common style issue.nyamatongwe1-0/+4
2013-04-29Change log.nyamatongwe1-0/+3
2013-04-28Use std::vector for list of watchers instead of manual management.nyamatongwe2-58/+35
2013-04-28Removed unused members.nyamatongwe1-3/+0
2013-04-26modifierTranslated only used on X11 so only define it there.Neil Hodgson1-0/+2
Avoids a compiler warning.
2013-04-26QInputContext is no longer available in Qt 5.Neil Hodgson2-0/+4
2013-04-26Switch away from deprecated method.Neil Hodgson1-1/+1
2013-04-26Use union to allow access to dynamic library functions.Neil Hodgson1-2/+11
2013-04-26Release all cached fonts when finalising.Unknown1-0/+8
2013-04-26Bug: [#1467]. Don't change scroll position when window is zero size.nyamatongwe1-0/+3
2013-04-26Added memory sanitizer to clang debug builds.Neil Hodgson1-0/+4
2013-04-25Fix Direct2D drawing when returning from lock screen.nyamatongwe2-10/+21
2013-04-25Extracted common code from branches.nyamatongwe1-6/+3
2013-04-25Fix bug with setting atLineEnd at end of document.nyamatongwe1-1/+3
2013-04-24Feature: [feature-requests:#987]. Cocoa user interface validation.nyamatongwe3-6/+32
2013-04-24Cosmetic: remove line-end whitespace.nyamatongwe6-93/+93
2013-04-24Added automatic folding options.nyamatongwe6-5/+151
2013-04-21Implement commonly needed folding methods based on code from SciTE.nyamatongwe5-27/+192
2013-04-20Added to help run cppcheck.nyamatongwe1-0/+41
2013-04-19* Use SCE_HA_COMMENTBLOCK2, SCE_HA_COMMENTBLOCK3kudah3-27/+70
* Implicit params * «Nice Character-lexing»
2013-04-19Remove unused methods.nyamatongwe7-142/+0
2013-04-19Using std::fill instead of a loop is much faster. As much as 4x on a large ↵nyamatongwe9-2/+17
block.
2013-04-19Updated changes.nyamatongwe1-0/+17
2013-04-18Fix clang warningkudah1-3/+2
2013-04-18Fold indented imports.kudah1-8/+39
2013-04-17Fixed import folding interfering with indentation foldingkudah1-2/+14
2013-04-17Removed importCurrentkudah1-6/+6
2013-04-18Ensure properties from earlier files survive: LexCPP defines some common ↵nyamatongwe1-1/+2
properties.
2013-04-18Bug [#1466]. Fix crash on deallocation.nyamatongwe1-1/+1
2013-04-17Allow Asian code pages to work for DirectWrite when using SC_CHARSET_DEFAULT.nyamatongwe1-1/+1
2013-04-17Removed dead assignment.nyamatongwe1-1/+0
2013-04-13Really minor refactorkudah1-13/+12
2013-04-12* Converted Haskell lexer to a classkudah1-125/+235
* Removed external lexer * Haskell lexer now folds imports
2013-04-17Remove method no longer needed due to change from NSTextInput to ↵nyamatongwe1-8/+0
NSTextInputClient.
2013-04-17Commit the current text when switching documents instead of discarding it asnyamatongwe1-1/+1
this retains the user's input when they forget to commit.
2013-04-17When switching documents, reset input composition as otherwise get mixture ↵nyamatongwe3-1/+17
of state from both documents.
2013-04-17Disallow undo and redo when not collecting undo as it is likely that the ↵nyamatongwe1-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-17Switch from implementing NSTextInput to its replacement NSTextInputClientnyamatongwe2-8/+32
NSTextInput is slated for deprecation and NSTextInputClient allows the selection of accented characters through pressing and holding the base key.