aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2004-07-17Patch from Brian Carnes to avoid scroll upwards when line added in wrap mode ↵nyamatongwe1-1/+1
on continuation line at top of window. This made it appear as if nothing happened.
2004-07-17Patch from Roland:nyamatongwe1-33/+127
Toggling for macros added Further folding speed optimitations (for eople dealing with very large listings)
2004-07-15Patch from Trent Mick to not treat the end of line characters as partnyamatongwe1-4/+8
of the line for SCI_LINEENDWRAP and SCI_LINEENDWRAPEXTEND when in wrap mode with visible end of line.
2004-07-08Patch from David Ascher. SC_MARK_EMPTY no longer overridesnyamatongwe1-5/+6
the background colour as it is supposed to be invisible.
2004-06-29Patch from Hans Eckardt to not consider separator commentnyamatongwe1-1/+2
lines of all slashes as normal comments instead of doc comments. ////////////////////////////////////////////
2004-06-23Delete all markers for a particular marker number now deletesnyamatongwe2-3/+3
multiple markers on one line.
2004-06-23Delete all markers for a particular marker number now deletesnyamatongwe1-5/+13
multiple markers on one line.
2004-06-20Update from Jos, mostly changes folding.nyamatongwe1-10/+16
2004-06-12Update from Hadar Raz to add more lexical classes.nyamatongwe1-145/+107
2004-06-09Unset function on PropSet.nyamatongwe1-0/+27
2004-06-08Made safe for non-ASCII characters by using characternyamatongwe1-10/+10
classification functions that accept non-ASCII or checking for ASCII before calling ctype functions.
2004-06-02Update from Philippe with some support for CSS 2.nyamatongwe1-4/+13
2004-06-02Fixed issue with continuation lines on If statements.nyamatongwe1-1/+3
2004-06-01Patch for allowing retrieval of document text encoded asnyamatongwe3-1/+8
UTF-8 and converting from UTF-8 to the document encoding.
2004-05-30Fix from Jos.nyamatongwe1-2/+1
2004-05-29Removed treating ':' as end of word in GetNearestWordsnyamatongwe1-5/+3
as it conflicted with languages that use ':' inside identifiers. Functionality can be achieved by passing ':' as otherSeparator parameter.
2004-05-29Updated AutoIt3 lexer from Jos.nyamatongwe1-40/+278
Handles folding by syntax rathe rthan indentation.
2004-05-27Fixed behaviour of SetWordChars so characters can be removednyamatongwe3-6/+6
from set of word characters. Implemented by setting any (alphanumeric or '_') characters not in argument to be punctuation.
2004-05-17Patch from Kein-Hong Man to improve handling of '/'.nyamatongwe1-3/+8
2004-05-13Made LineLayout::styles unsigned as slightly safernyamatongwe2-6/+6
if anyone extends to allow 256 styles.
2004-05-11Modifications to selection handling to make copying andnyamatongwe2-9/+22
pasting from/to various encodings work.
2004-05-09Fixed # pre-processor statement inside of comment blocknyamatongwe1-11/+24
would invalidly change the color. Added logic for #include <xyz.au3> to treat the <> as string Added underscore to IsAOperator.
2004-05-04Support from Bruce Dodson for Lua tracebacks.nyamatongwe1-4/+6
2004-05-03Allow backslash quoting in strings when sql.backslash.escapesnyamatongwe1-3/+15
turned on.
2004-05-02Philippe added function for determining if a character is a digit innyamatongwe1-1/+11
bases other than decimal.
2004-05-02Philippe added function for determining if a character is a digit innyamatongwe1-1/+1
bases other than decimal.
2004-05-02Some comments and const modifiers from Philippe.nyamatongwe2-4/+14
2004-05-02Removed some continuation marker variables that are not needed.nyamatongwe1-10/+5
2004-05-02Fix for folding of PHP when braces inside strings.nyamatongwe1-0/+2
2004-04-27Continuation Marker feature from Hans Eckardt.nyamatongwe4-16/+208
2004-04-25// April 21, 2004 - Added Preprosessor Table + Syntax Highlightingnyamatongwe1-42/+129
// Fixed Number highlighting // Changed default isoperator to IsAOperator to have a better match to AutoIt3 // Fixed "#comments_start" -> "#comments-start" // Fixed "#comments_end" -> "#comments-end" // Fixed Sendkeys in Strings when not terminated with } // Added support for Sendkey strings that have second parameter e.g. {UP 5}
2004-04-24Changed check whether growth needed in SString insert andnyamatongwe1-24/+11
append to not grow when new length is 1 less than size.
2004-04-19Fix to line layout cache use. When a line was retrieved fromnyamatongwe1-0/+1
the line layout cache and then replaced with another that mapped to the same cache entry then there could be use of a deleted pointer.
2004-04-16Patch from John Ehresman to add character set to selections.nyamatongwe2-9/+12
2004-04-14Patch from Trent Mick.nyamatongwe1-1/+3
Prevent autocompletion from deleting prefix when actioned with no choice selected. Cancel autocompletion when backspacing beyond the start position rather than to the start position.
2004-04-14Minor formatting edits from Philippe.nyamatongwe1-6/+7
2004-04-12Added lexer for bash and sh from Kein-Hong Man.nyamatongwe2-0/+646
2004-04-12Folder added by Jos.nyamatongwe1-1/+52
2004-04-12Extra argument validation from Philippe.nyamatongwe1-2/+6
2004-04-12Comments from Philippe.nyamatongwe1-7/+9
2004-04-06SCI_SETTEXT made a single undo action.nyamatongwe1-2/+4
2004-04-05Patch from Kein-Hong Man:nyamatongwe1-6/+54
- fixed / interpretation following -> style variables/objects - fixed ->y type cases where lexer sees regex-type blocks
2004-04-02String code from Pavol Bosik used by Anjuta.nyamatongwe1-2/+11
2004-03-29Patch from Robin Dunn to pass an extra flag down tonyamatongwe4-10/+13
font rendering to allow a platform-specific tweak.
2004-03-27Indent white space fix.nyamatongwe1-2/+2
2004-03-27Added AutoIt 3 and APDL lexers.nyamatongwe4-97/+528
MSSQL lexer entended with STORED_PROCEDURE, DEFAULT_PREF_DATATYPE, and COLUMN_NAME_2 style classes.
2004-03-27Fixed bug when wrapping and undo removes all text innyamatongwe1-1/+7
document.
2004-03-20Fixed a clash in the line layout cache when caching page and caretnyamatongwe1-2/+6
was reusing a slot already used.
2004-03-19Patch from Bruce Dodson for diff/patch files improves lexer andnyamatongwe1-6/+56
adds folder.
2004-03-19Patch from John Ehresman to prevent a hang when called to lex for 1nyamatongwe1-2/+1
character from the start of a multi-character string start.