Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ansi coloring #66

Closed
remkop opened this issue Mar 7, 2017 · 2 comments
Closed

Support ansi coloring #66

remkop opened this issue Mar 7, 2017 · 2 comments

Comments

@remkop
Copy link
Owner

remkop commented Mar 7, 2017

This looks nice: https://github.com/backuity/clist

exampleusageansi

@remkop remkop added this to the 0.3.0 usage online help milestone Mar 7, 2017
@remkop remkop modified the milestones: 0.3.0 usage online help, 0.5.0 advanced option parsing Mar 18, 2017
@remkop remkop modified the milestones: 0.5.0 advanced option parsing, 0.4.0 user manual Mar 31, 2017
remkop added a commit that referenced this issue Apr 2, 2017
@remkop
Copy link
Owner Author

remkop commented Apr 5, 2017

AnsiText:
  String plain;
  int offset;
  int length;
  List<Integer> indices;
  List<String > asciEscapes;

substring(int from, int to) {
  assert to >= from && to <= plain.length();
  Text copy = clone();
  copy.offset = this.offset + from;
  copy.length = to - from;
  return copy;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant