10 lines
320 B
Swift
10 lines
320 B
Swift
import CodexBarCore
|
|
import Foundation
|
|
|
|
extension SettingsStore {
|
|
func jetbrainsSettingsSnapshot() -> ProviderSettingsSnapshot.JetBrainsProviderSettings {
|
|
ProviderSettingsSnapshot.JetBrainsProviderSettings(
|
|
ideBasePath: self.jetbrainsIDEBasePath.isEmpty ? nil : self.jetbrainsIDEBasePath)
|
|
}
|
|
}
|