Skip to content

Commit

Permalink
feat: enable reveal button
Browse files Browse the repository at this point in the history
  • Loading branch information
dscyrescotti committed Jun 23, 2023
1 parent 35d2783 commit 69cf6ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CodeEdit/Features/WindowCommands/NavigateCommands.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,33 +20,38 @@ struct NavigateCommands: Commands {

}
.keyboardShortcut("m", modifiers: [.shift, .command])
.disabled(true)

Button("Open in Next Editor") {

}
.keyboardShortcut(",", modifiers: [.option, .command])
.disabled(true)

Button("Open in...") {

}
.disabled(true)

Divider()

Button("Show Previous Tab") {

}
.disabled(true)

Button("Show Next Tab") {

}
.disabled(true)

Divider()

Button("Go Forward") {

}
.disabled(true)
}
.disabled(true)

Group {

Expand Down

0 comments on commit 69cf6ba

Please sign in to comment.