Filesystem monitor and refactor.
This commit is contained in:
@@ -15,32 +15,31 @@ final class EditableNSTextField: NSTextField {
|
||||
if event.type == NSEvent.EventType.keyDown {
|
||||
if modsContains(keys: OSCmd, in: modifiers) {
|
||||
if key == kVK_ANSI_X {
|
||||
if NSApp.sendAction(#selector(NSText.cut(_:)),
|
||||
to: nil, from: self)
|
||||
{ return true }
|
||||
if NSApp.sendAction(#selector(NSText.cut(_:)), to: nil, from: self) {
|
||||
return true
|
||||
}
|
||||
} else if key == kVK_ANSI_C {
|
||||
if NSApp.sendAction(#selector(NSText.copy(_:)),
|
||||
to: nil, from: self)
|
||||
{ return true }
|
||||
if NSApp.sendAction(#selector(NSText.copy(_:)), to: nil, from: self) {
|
||||
return true
|
||||
}
|
||||
} else if key == kVK_ANSI_V {
|
||||
if NSApp.sendAction(#selector(NSText.paste(_:)),
|
||||
to: nil, from: self)
|
||||
{ return true }
|
||||
if NSApp.sendAction(#selector(NSText.paste(_:)), to: nil, from: self) {
|
||||
return true
|
||||
}
|
||||
} else if key == kVK_ANSI_Z {
|
||||
if NSApp.sendAction(Selector(("undo:")),
|
||||
to: nil, from: self)
|
||||
{ return true }
|
||||
if NSApp.sendAction(Selector(("undo:")), to: nil, from: self) {
|
||||
return true
|
||||
}
|
||||
} else if key == kVK_ANSI_A {
|
||||
if NSApp.sendAction(
|
||||
#selector(NSResponder.selectAll(_:)), to: nil,
|
||||
from: self)
|
||||
{ return true }
|
||||
if NSApp.sendAction(#selector(NSResponder.selectAll(_:)), to: nil, from: self) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
} else if modsContains(keys: OSCmd | OSShift, in: modifiers) {
|
||||
if key == kVK_ANSI_Z {
|
||||
if NSApp.sendAction(Selector(("redo:")), to: nil,
|
||||
from: self)
|
||||
{ return true }
|
||||
if NSApp.sendAction(Selector(("redo:")), to: nil, from: self) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user