- Mar 03, 2013
-
-
David Pathakjee authored
-
Yunchi Luo authored
-
Yunchi Luo authored
-
Yunchi Luo authored
-
Yunchi Luo authored
-
- Mar 01, 2013
-
-
Joseph Pecoraro authored
StringString.prototype.match(<string>) may do a lot of unnecessary work: - If it is caseInsensitive it was calling toLowerCase on the entire string. - It did an indexOf search through the string for a pattern, but only cared if the string started with that pattern. Because a string pattern has a fixed length, we only need to run toLowerCase on a small substring of the stream, and we only compare this small substring to the pattern.
-
Brandon Frohs authored
-
Joseph Pecoraro authored
Fixes Issue #1301 StringStreams.prototype.column was always calculating the column offset for a position by walking from index 0 in the string to the current start position. That is factorial in performance and gets noticeably slower with long lines. StringStreams only ever advance forward. So when determining the column we can cache the value for a previous position on the line. Then the next time column is called, we only need to update the cache for the small portion that the Stream advanced. This way we only ever walk the stream once.
-
David Pathakjee authored
(->> 'clojure.core ns-publics (map first) sort (clojure.string/join " "))
-
John Connor authored
Functionality and error messages match the latest vim 7.0 release.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
-
Ford_Lawnmower authored
-
Ford_Lawnmower authored
-
- Feb 28, 2013
-
-
Brandon Frohs authored
Previously, lists following other content weren't always highlighted.
-
Brandon Frohs authored
Closes #1165.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Closes #1291
-
Marijn Haverbeke authored
Closes #1292
-
- Feb 27, 2013
-
-
Marijn Haverbeke authored
Closes #1284
-
Brandon Frohs authored
Per Dingus.
-
Brandon Frohs authored
Should use `em` or `strong` instead.
-
Brandon Frohs authored
Add support for nesting and avoid hiding code highlighting. Related to #1276 (but blockquotes, instead of lists).
-
Brandon Frohs authored
-
Brandon Frohs authored
Also includes improved support of nested lists. Closes #1276.
-
Marijn Haverbeke authored
Closes #1290
-
- Feb 26, 2013
-
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
+ add CodeMirror Movie link
-
Marijn Haverbeke authored
And use the editor-wide option when no value is found on the mode. Issue #1281
-
Hasan Karahan authored
The old mode was not supporting many rST constructs, or not in sufficient detail. Features/changes: * no `backUp` ops to keep things fast; * kept `python` inner mode integration; * added `latex` inner mode; * eliminated `verbatim` configuration parameter; * eliminated non-standard tokens: the old mode was producing `footnote` and `citation` tokens, which were replaced with `quote`; * many more details: visually compare highlighting between old and new to get an impression; * MIT license (copied and adapted form `python` mode);
-
- Feb 25, 2013
-
-
Marijn Haverbeke authored
A call to replaceRange hadn't been updated to its new signature.
-
Marijn Haverbeke authored
(but only remotely).
-
Ahmad M. Zawawi authored
-
- Feb 22, 2013
-
-
Marijn Haverbeke authored
It fails on Travis, but not on my local machine's Phantom or in a real Webkit, so I'm going to assume it's a spurious failure.
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Issue #1268
-
Marijn Haverbeke authored
-
Metatheos authored
- handling special keys better for commands requiring a character - r can operate on selection - fixed: t moves back if character not found - +/-/_ via extension of moveByLines motion
-
Marijn Haverbeke authored
-
Marijn Haverbeke authored
Closes #1264
-