Skip to content

Commit

Permalink
✨ Keybinds for 2/3-sized windows are now two-key keybinds
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKai77 committed Aug 23, 2023
1 parent 04ae8da commit 95f797a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Loop/Extensions/Defaults+Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ extension Defaults.Keys {
)
static let leftTwoThirds = Key<[Set<CGKeyCode>]>(
"leftTwoThirds",
default: [[.kVK_ANSI_U]]
default: [[.kVK_ANSI_J, .kVK_ANSI_K]]
)
static let horizontalCenterThird = Key<[Set<CGKeyCode>]>(
"horizontalCenterThird",
default: [[.kVK_ANSI_K]]
)
static let rightTwoThirds = Key<[Set<CGKeyCode>]>(
"rightTwoThirds",
default: [[.kVK_ANSI_O]]
default: [[.kVK_ANSI_K, .kVK_ANSI_L]]
)
static let rightThird = Key<[Set<CGKeyCode>]>(
"rightThird",
Expand Down
2 changes: 1 addition & 1 deletion Loop/Settings/Views/KeybindingSettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ struct KeybindingSettingsView: View {
HStack {
VStack(alignment: .leading) {
Text("Use JKL to resize into thirds:")
Text("Use U and O keys for 2/3-sized windows!")
Text("Press two keys for 2/3-sized windows!")
.font(.caption)
.foregroundColor(.secondary)
}
Expand Down

0 comments on commit 95f797a

Please sign in to comment.