Skip to content

Commit

Permalink
update ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwing committed Nov 5, 2014
1 parent 70337ea commit 96061f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@



* API Changes
- `editor.commands.commandKeyBinding` now contains direct map from keys to commands instead of grouping them by hashid
-

* New Features
- Improved autoindent for html and php modes (Adam Jimenez)
- Find All from searchbox (Colton Voege)

* new language modes
- Elixir, Elm

2014.09.21 Version 1.1.7

* Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion tool/tmlanguage.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function convertToNonCapturingGroups(str) {

function simplifyNonCapturingGroups(str) {
var tokens = tokenize(str);
var t = tokens[0];
var t = tokens[0] || {};
if (t.type == "group.start" && t.value == "(?:"
&& t.end == last(tokens)) {
t.value = t.end.value = "";
Expand Down

0 comments on commit 96061f7

Please sign in to comment.