2016-07-17 20:11:22 +03:00
|
|
|
/**
|
|
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
|
|
* See LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
|
|
|
|
class Application: NSApplication {
|
|
|
|
|
|
|
|
override init() {
|
|
|
|
// Do very early initializtion here
|
|
|
|
|
|
|
|
// disable default press and hold behavior (copied from MacVim)
|
|
|
|
CFPreferencesSetAppValue(
|
|
|
|
"ApplePressAndHoldEnabled" as NSString,
|
|
|
|
"NO" as NSString,
|
|
|
|
kCFPreferencesCurrentApplication
|
|
|
|
)
|
2016-08-03 21:55:19 +03:00
|
|
|
|
|
|
|
super.init()
|
2016-07-17 20:11:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
fatalError("init(coder:) has not been implemented")
|
|
|
|
}
|
2016-08-26 10:19:40 +03:00
|
|
|
|
2016-09-25 19:29:42 +03:00
|
|
|
@IBAction override func showHelp(_: Any?) {
|
2016-09-25 18:50:33 +03:00
|
|
|
NSWorkspace.shared().open(URL(string: "https://github.com/qvacua/vimr/wiki")!)
|
2016-08-26 10:19:40 +03:00
|
|
|
}
|
2016-07-17 20:11:22 +03:00
|
|
|
}
|