Skip to content

Commit

Permalink
remove __meta__ from unix_formatting formatters #470
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 5, 2019
1 parent 47e66fb commit 357d16e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* fix describe === false (exception in js and typscript definition)
* don't pause terminal when user code return result of calling terminal::read()
* fix jumping while using up/down arrows [#477](https://github.com/jcubic/jquery.terminal/issues/477) [#478](https://github.com/jcubic/jquery.terminal/issues/478)
* fix issue with echo brackets inside formatting when using unix formatting [#470](https://github.com/jcubic/jquery.terminal/issues/470)

## 2.2.0
### Features
Expand Down
2 changes: 1 addition & 1 deletion js/unix_formatting.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@
return result;
};
})();
$.terminal.from_ansi.__meta__ = true;
$.terminal.from_ansi.__no_warn__ = true;
$.terminal.defaults.formatters.unshift($.terminal.from_ansi);
$.terminal.defaults.formatters.unshift($.terminal.overtyping);
});

0 comments on commit 357d16e

Please sign in to comment.