Compare commits
No commits in common. "8aee0f3a4f2ebbd0ce035daea7d8978eb7326902" and "8cb9b5e4f6b5bb80c07073af73faf1d3b6d0fbce" have entirely different histories.
8aee0f3a4f
...
8cb9b5e4f6
3 changed files with 6 additions and 4 deletions
|
|
@ -18,8 +18,8 @@
|
|||
.hash = "dizzy-1.0.0-q40X4YCRAAAGYO9QOZiYYSOwiiFlqZlecMuQcxPiBcXM",
|
||||
},
|
||||
.thespian = .{
|
||||
.url = "git+https://github.com/neurocyte/thespian?ref=master#fb9207d22537f2940748c3e110b51be44296120e",
|
||||
.hash = "thespian-0.0.1-owFOjtseBgA9KTb5dsA3KMcKj6sbXskYs3hxjHs4z3ub",
|
||||
.url = "git+https://github.com/neurocyte/thespian?ref=master#25b10b6b5b23e6e44cbcaebbd107f117ed51d0d4",
|
||||
.hash = "thespian-0.0.1-owFOjp0eBgCt6bQHckPIQBouw4ivKXhV9TY8T-uvu4Op",
|
||||
},
|
||||
.themes = .{
|
||||
.url = "https://github.com/neurocyte/flow-themes/releases/download/master-952f9f630ea9544088fd30293666ee0650b7a690/flow-themes.tar.gz",
|
||||
|
|
|
|||
|
|
@ -1027,6 +1027,8 @@ const Node = union(enum) {
|
|||
.writer = .{
|
||||
.vtable = &.{
|
||||
.drain = Ctx.drain,
|
||||
.flush = std.Io.Writer.noopFlush,
|
||||
.rebase = std.Io.Writer.failingRebase,
|
||||
},
|
||||
.buffer = &.{},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -5755,7 +5755,7 @@ pub const Editor = struct {
|
|||
defer args.deinit();
|
||||
try cbor.writeArrayHeader(&args.writer, fmtr.len);
|
||||
for (fmtr) |arg| try cbor.writeValue(&args.writer, arg);
|
||||
try self.filter_cmd(.{ .buf = args.written() });
|
||||
try self.filter_cmd(.{ .buf = try args.toOwnedSlice() });
|
||||
return;
|
||||
}
|
||||
return tp.exit("no formatter");
|
||||
|
|
@ -5779,7 +5779,7 @@ pub const Editor = struct {
|
|||
try expand_selection_to_all(root, &sel_, self.metrics);
|
||||
break :val sel_;
|
||||
};
|
||||
const reversed = sel.is_reversed();
|
||||
const reversed = sel.begin.right_of(sel.end);
|
||||
sel.normalize();
|
||||
self.filter_ = .{
|
||||
.before_root = root,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue