Merge pull request #777 from p00f/main

disable zig fmt for aligned comments
This commit is contained in:
Mitchell Hashimoto
2023-10-31 11:19:35 -07:00
committed by GitHub

View File

@@ -4107,6 +4107,8 @@ test "Screen: selectOutput" {
var s = try init(alloc, 15, 10, 0);
defer s.deinit();
// zig fmt: off
{
// line number:
try s.testWriteString("output1\n"); // 0
try s.testWriteString("output1\n"); // 1
@@ -4118,6 +4120,7 @@ test "Screen: selectOutput" {
try s.testWriteString("output3\n"); // 7
try s.testWriteString("output3\n"); // 8
try s.testWriteString("output3"); // 9
}
var row = s.getRow(.{ .screen = 2 });
row.setSemanticPrompt(.prompt);