File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
Sources/CodeEditSourceEditor/Controller Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,6 @@ extension TextViewController {
201
201
202
202
func handleCommand( event: NSEvent , modifierFlags: UInt ) -> NSEvent ? {
203
203
let commandKey = NSEvent . ModifierFlags. command. rawValue
204
- let commandOptionKey = NSEvent . ModifierFlags. command. union ( . option) . rawValue
205
204
206
205
switch ( modifierFlags, event. charactersIgnoringModifiers) {
207
206
case ( commandKey, " / " ) :
@@ -210,15 +209,9 @@ extension TextViewController {
210
209
case ( commandKey, " [ " ) :
211
210
handleIndent ( inwards: true )
212
211
return nil
213
- case ( commandOptionKey, " [ " ) :
214
- moveLinesUp ( )
215
- return nil
216
212
case ( commandKey, " ] " ) :
217
213
handleIndent ( )
218
214
return nil
219
- case ( commandOptionKey, " ] " ) :
220
- moveLinesDown ( )
221
- return nil
222
215
case ( commandKey, " f " ) :
223
216
_ = self . textView. resignFirstResponder ( )
224
217
self . findViewController? . showFindPanel ( )
You can’t perform that action at this time.
0 commit comments