mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
Make some fields private
This commit is contained in:
parent
863a6458a2
commit
f72981ca10
@ -9,7 +9,7 @@ import PureLayout
|
||||
import Sparkle
|
||||
|
||||
/// Keep the rawValues in sync with Action in the `vimr` Python script.
|
||||
private enum VimRUrlAction: String {
|
||||
fileprivate enum VimRUrlAction: String {
|
||||
case activate = "activate"
|
||||
case open = "open"
|
||||
case newWindow = "open-in-new-window"
|
||||
|
@ -14,9 +14,6 @@ class FileOutlineView: NSOutlineView,
|
||||
|
||||
typealias StateType = MainWindow.State
|
||||
|
||||
var cwd: URL = FileUtils.userHomeUrl
|
||||
var isShowHidden: Bool
|
||||
|
||||
required init(source: Observable<StateType>, emitter: ActionEmitter, state: StateType) {
|
||||
self.emitter = emitter
|
||||
|
||||
@ -115,6 +112,9 @@ class FileOutlineView: NSOutlineView,
|
||||
fileprivate let uuid: String
|
||||
fileprivate var lastFileSystemUpdateMark = Token()
|
||||
|
||||
fileprivate var cwd: URL = FileUtils.userHomeUrl
|
||||
fileprivate var isShowHidden: Bool
|
||||
|
||||
fileprivate var root: FileBrowserItem
|
||||
fileprivate let fileSystemRoot: FileItem
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user