1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00
vimr/NvimView/DrawerDev/AppDelegate.swift
Tae Won Ha ce0e0c64d7 GH-666 Add a new typesetter [WIP]
The typesetter will replace the MMCoreTextView of MacVim.
2018-08-27 18:46:02 +02:00

26 lines
524 B
Swift

//
// AppDelegate.swift
// DrawerDev
//
// Created by Tae Won Ha on 25.08.18.
// Copyright © 2018 Tae Won Ha. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}