We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f8034 commit 664de49Copy full SHA for 664de49
CodeEdit/Features/WindowCommands/EditorCommands.swift
@@ -19,12 +19,12 @@ struct EditorCommands: Commands {
19
CommandMenu("Editor") {
20
Menu("Structure") {
21
Button("Move line up") {
22
- editor?.selectedTab?.rangeTranslator?.moveLinesUp()
+ editor?.selectedTab?.rangeTranslator.moveLinesUp()
23
}
24
.keyboardShortcut("[", modifiers: [.command, .option])
25
26
Button("Move line down") {
27
- editor?.selectedTab?.rangeTranslator?.moveLinesDown()
+ editor?.selectedTab?.rangeTranslator.moveLinesDown()
28
29
.keyboardShortcut("]", modifiers: [.command, .option])
30
0 commit comments