Rename goto_split top/bottom directions to up/down.

This commit is contained in:
Daniel Patterson
2024-12-27 14:44:33 +00:00
parent a8e5eef11c
commit a4daabb28a
9 changed files with 27 additions and 27 deletions

View File

@@ -64,10 +64,10 @@ extension Ghostty {
let node: SplitNode
switch (direction) {
case .previous, .top, .left:
case .previous, .up, .left:
node = container.bottomRight
case .next, .bottom, .right:
case .next, .down, .right:
node = container.topLeft
}