Add statusline and accept pipes from stdin

This commit is contained in:
Zachary Yedidia
2016-03-12 16:46:41 -05:00
parent 934634507d
commit 757986ae3f
5 changed files with 57 additions and 7 deletions

View File

@@ -14,6 +14,7 @@ class Buffer {
this(string txt, string path) {
text = new Rope(txt);
savedText = txt;
this.path = path;
update();
}