Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change lexer definition of high bytes. | Max | 2015-02-01 | 1 | -3/+3 |
| | | | | | | | | | | | | flex does not(*) support UTF-8, therefore alpha [a-z_\.À-゚] has always been interpreted by flex as alpha [a-z_\.\xC3\x80-\xEF\xBE\x9F] I assume this is not what was indetend and the only reason it worked, is because C3 (195),BE (190) and 9F (159) are already covered by 80-EF (128-239). Incidentally this range would also cover the whole Unicode BMP in UTF8. This change should make it more obvious. (*) There were some patches in 2012 and 2014 but they don't seem to have been merged. | ||||
* | Update lexer to reflect that backticks can actually escape themselves (won't ↵ | Max | 2015-02-01 | 1 | -1/+1 |
| | | | | cause visible changes) | ||||
* | Simplify catchall lexer rule | Max | 2015-02-01 | 1 | -2/+1 |
| | |||||
* | Move some duplicate code into it's own file | Max | 2015-01-27 | 1 | -54/+1 |
| | |||||
* | Remove more SVN properties. | Stuart Connolly | 2014-01-26 | 1 | -4/+2 |
| | |||||
* | Adjust keywords list to fix auto capitalisation of "ON". | avenjamin | 2013-03-11 | 1 | -1/+1 |
| | |||||
* | Change Sequel Pro's license from GPL (version 2) to MIT. | stuconnolly | 2012-07-25 | 1 | -13/+21 |
| | |||||
* | - Fix more compiler warnings | rowanbeentje | 2011-03-15 | 1 | -0/+1 |
| | | | | | - Tweak README | ||||
* | Fix compiler warnings related to flex and derived sources | rowanbeentje | 2011-03-04 | 1 | -2/+1 |
| | |||||
* | • updated syntax highlighting and completion suggestions due to 5.5 additions | Bibiko | 2011-01-21 | 1 | -4/+29 |
| | | | | • improved "Format SQL" connection detection | ||||
* | • fixed syntax highlighting for comments like '--\n' or '--\r' since ↵ | Bibiko | 2011-01-20 | 1 | -0/+1 |
| | | | | these're also valid comments in MySQL ( http://dev.mysql.com/doc/refman/5.1/en/comments.html ) | ||||
* | Tidy up imports and fix 'Reverse Sort Order' when sorting connection ↵ | stuconnolly | 2010-03-31 | 1 | -0/+1 |
| | | | | favorites (Thanks Hans). | ||||
* | • improved text macro snippet behaviour | Bibiko | 2010-02-13 | 1 | -6/+14 |
| | | | | | | • improved the ability to run bash commands inside of snippets • ignore most of the syntax highlighting inside snippet declarations • fixed issue in CMTextView to use obj class variables only to generalise this object | ||||
* | • updated/added syntax highlighting tokens and completion suggestions | Bibiko | 2010-01-21 | 1 | -7/+7 |
| | |||||
* | • added missing PROCEDURE ANALYSE to syntax highlighting | Bibiko | 2010-01-19 | 1 | -2/+2 |
| | |||||
* | • made lexer 64bit compatible | Bibiko | 2010-01-10 | 1 | -3/+3 |
| | | | | | | - 'int' has to be replaced by 'size_t' • F5 completion - if inside of backticks after completion move caret one char rightwards to go out of the backticks | ||||
* | More header updates for source files, including Subversion Id property. | stuconnolly | 2009-05-19 | 1 | -0/+2 |
| | |||||
* | Source tidy up including standard header for all source files. | stuconnolly | 2009-05-18 | 1 | -3/+23 |
| | |||||
* | • fix syntax highlighting for PROCEDURE | Bibiko | 2009-05-11 | 1 | -2/+2 |
| | |||||
* | • fix for issue 253: syntax highlighting didn't recognize a \r as line ending | Bibiko | 2009-05-08 | 1 | -6/+6 |
| | |||||
* | • improved completion in CQ's text view | Bibiko | 2009-05-02 | 1 | -1/+1 |
| | | | | | | | - added database names - fixed logic for detecting if caret is inside quotes - if caret inside backticks show only db, table, column names • outsourced syntax highlighting into a method for further improvements | ||||
* | • updated completion list and added core functions | Bibiko | 2009-04-23 | 1 | -3/+16 |
| | | | | | • improved separator list for word list completion coming from the text view • minor update for syntax highlighting | ||||
* | • syntax highlighting and completion list updated | Bibiko | 2009-04-14 | 1 | -5/+7 |
| | |||||
* | • syntax highlighting and completion list updated | Bibiko | 2009-04-14 | 1 | -1/+2 |
| | |||||
* | • syntax highlighting synchronized according to the completion list | Bibiko | 2009-04-09 | 1 | -3/+251 |
| | | | | • some minor code cosmetics | ||||
* | • keyword update for syntax highlighting | Bibiko | 2009-04-08 | 1 | -6/+26 |
| | | | | • keyword update for completion | ||||
* | • simplified paste: (esp. for undo) | Bibiko | 2009-04-08 | 1 | -1/+2 |
| | | | | • syntax highlighting updated | ||||
* | • ADDED “TRUNCATE” as SQL keyword for syntax highlighting resp. ↵ | Bibiko | 2009-04-08 | 1 | -1/+2 |
| | | | | auto-uppercasing | ||||
* | • syntax highlighting updated | Bibiko | 2009-04-08 | 1 | -108/+143 |
| | | | | - added highlighting for @vars | ||||
* | • optimized syntax highlighting a bit | Bibiko | 2009-04-07 | 1 | -247/+305 |
| | | | | | | • added syntax highlighting for numeric values • changed syntax highlighting for 'order' and 'group' to 'order by' resp. 'group by' (useful also for visual syntax checking while typing) • fixed the issue to highlight a keyword if that keyword is the name a variable (e.g. @set := 1) | ||||
* | • tentative fix to suppress auto-uppercasing/syntax highlighting of ↵ | Bibiko | 2009-04-05 | 1 | -2/+2 |
| | | | | table/field names if such a name begins with a SQL keyword followed by a non-ASCII letter like äöüéた etc. | ||||
* | Rename tokens.h to SPEditorTokens.h and tokens.l to SPEditorTokens.l. | stuconnolly | 2009-03-26 | 1 | -0/+300 |