├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── EditorBar.sln.DotSettings ├── EditorBar.slnx ├── LICENSE.txt ├── README.md ├── assets ├── Icon.png ├── breadcrumbs.png ├── dropdown.png ├── marketplace.md ├── options.png ├── screenshot-dropdowns.png └── screenshot.png ├── settings.VisualStudio.json └── src └── EditorBar ├── Commands ├── Abstractions │ ├── BaseMenuContextCommand.cs │ ├── IMenuContextService.cs │ ├── MenuContext.cs │ ├── MenuContextService.cs │ ├── MenuExtensions.cs │ ├── MenuId.cs │ └── MenuIdAttribute.cs ├── File │ ├── BaseFileActionMenuContextCommand.cs │ ├── CopyFullPathToClipboardCommand.cs │ ├── CopyRelativePathToClipboardCommand.cs │ ├── FileActionMenuContext.cs │ ├── LocateInSolutionExplorerCommand.cs │ ├── OpenContainingFolderCommand.cs │ ├── OpenInDefaultEditorCommand.cs │ └── OpenInExternalEditorCommand.cs ├── General │ ├── BaseFocusBreadcrumbCommand.cs │ ├── EditorBarOptionsCommand.cs │ ├── FocusEditorBarFileCrumbCommand.cs │ ├── FocusEditorBarInnermostTypeCrumbCommand.cs │ ├── FocusEditorBarProjectBreadcrumbCommand.cs │ └── ToggleEditorBarCommand.cs ├── Location │ ├── BaseLocationMenuContextCommand.cs │ ├── BasePhysicalLocationContextMenuCommand.cs │ ├── CopyFullPathContainingFolderCommand.cs │ ├── CopyPhysicalDirectoryFullPathContainingFolderCommand.cs │ ├── LocatePhysicalDirectoryInSolutionExplorerCommand.cs │ ├── LocateProjectInSolutionExplorerCommand.cs │ ├── LocationBreadcrumbMenuContext.cs │ ├── OpenPhysicalDirectoryContainingFolderCommand.cs │ ├── OpenProjectContainingFolderCommand.cs │ └── OpenProjectPropertiesCommand.cs └── Structural │ ├── BaseStructureMenuContextCommand.cs │ ├── CopyDocIdCommand.cs │ ├── CopyFullNameCommand.cs │ ├── NavigateToCodeElementCommand.cs │ └── StructureBreadcrumbMenuContext.cs ├── Controls ├── ChevronButton.cs ├── ColorButton.xaml ├── ColorButton.xaml.cs ├── ColorSelector.xaml ├── ColorSelector.xaml.cs ├── EditorBarBreadcrumbs.xaml ├── EditorBarBreadcrumbs.xaml.cs ├── EditorBarControl.xaml ├── EditorBarControl.xaml.cs ├── EditorBarControlContainer.xaml ├── EditorBarControlContainer.xaml.cs ├── IconDisplay.xaml ├── IconDisplay.xaml.cs ├── LegacyFileLabel.xaml ├── LegacyFileLabel.xaml.cs ├── MemberList.xaml ├── MemberList.xaml.cs ├── MemberListPopup.xaml ├── MemberListPopup.xaml.cs ├── Options │ ├── GeneralOptionsControl.xaml │ └── GeneralOptionsControl.xaml.cs └── SymbolChevronButton.cs ├── EditorBarPackage.cs ├── GlobalUsings.cs ├── Helpers ├── CodeAnalysis │ ├── CodeAnalysisHelper.cs │ ├── FileStructureHelper.cs │ ├── IconProviderForCodeAnalysis.cs │ ├── RoslynWorkspaceExtensions.cs │ ├── SourceTextExtensions.cs │ └── SymbolExtensions.cs ├── DisposableExtensions.cs ├── Events │ ├── Abstractions │ │ ├── IMyEventSource.cs │ │ ├── ISettingsRefreshAggregator.cs │ │ ├── IStructureRefreshAggregator.cs │ │ ├── SettingsRefreshEventArgs.cs │ │ ├── SettingsRefreshReason.cs │ │ ├── SolutionProjectChangeReason.cs │ │ └── SolutionProjectChangedEventArgs.cs │ ├── CompositionEventSource.cs │ ├── GenericEventSource.cs │ ├── LocationBreadcrumbEventAggregator.cs │ ├── SettingsRefreshAggregator.cs │ ├── SolutionProjectChangeTracker.cs │ └── StructureRefreshAggregator.cs ├── IconIds.cs ├── IntelliSenseProjectContextContainer.cs ├── Launcher.cs ├── Matchers.cs ├── PathUtils.cs ├── Presentation │ ├── BrushHelper.cs │ ├── ColorExtensions.cs │ └── StyleHelper.cs ├── Rx │ ├── Pauser.cs │ ├── RxLoggingExtensions.cs │ ├── SelectNothingObservableExtensions.cs │ ├── SubjectFactory.cs │ └── ThrottleFirst.cs ├── SingleActionGatedExecutor.cs ├── StackedImageMoniker.cs ├── StopwatchStatement.cs ├── StringHelper.cs ├── SymbolUsageKind.cs └── VisualStudio │ ├── BulkObservableCollectionExtensions.cs │ ├── ClipboardHelper.cs │ ├── ProjectProperties.cs │ ├── TextViewExtensions.cs │ ├── VirtualProjectFinder.cs │ ├── VisualStudioHelper.cs │ └── VsImageHelper.cs ├── JPSoftworks.EditorBar.csproj ├── JPSoftworks.EditorBar.csproj.DotSettings ├── MefComponents ├── BaseEditorBarFactory.cs ├── BottomEditorBarFactory.cs ├── EditorBarMargin.cs └── TopEditorBarFactory.cs ├── Options ├── BarPosition.cs ├── DisplayStyle.cs ├── EnumToDescriptionConverter.cs ├── FileAction.cs ├── FileLabel.cs ├── GeneralOptionPage.cs ├── GeneralOptionsModel.cs └── VisualStyle.cs ├── Polyfill ├── NullabilityPolyfills.cs ├── System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute.cs ├── System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.cs ├── System.Runtime.CompilerServices.IsExternalInit.cs └── System.Runtime.CompilerServices.RequiredMemberAttribute.cs ├── Presentation ├── BackgroundConverter.cs ├── BooleanConverter (of T).cs ├── BrightnessConverter.cs ├── ColorToBrushConverter.cs ├── ContrastForegroundBrushConverter.cs ├── GenericType.cs ├── InvertedBooleanToVisibilityConverter.cs ├── IsFirstItemConverter.cs ├── LeftBorderThicknessConverter.cs ├── MonikerToCollapsedConverter.cs ├── MyItemContainerStyleSelector.cs ├── NullToCollapsedConverter.cs ├── OrConverter.cs ├── SeparatorStrokeConverter.cs └── SymbolDateTemplateSelector.cs ├── Properties └── AssemblyInfo.cs ├── Resources ├── CommandIcons.png ├── Icon.png ├── Strings.Designer.cs └── Strings.resx ├── Services ├── Abstractions │ ├── FileStructureElementModel.cs │ ├── ICodeNavigationService.cs │ ├── ITextNavigationService.cs │ └── IWorkspaceMonitor.cs ├── CodeNavigationDecorator.cs ├── CodeNavigationService.cs ├── LocationProviders │ ├── Abstractions │ │ ├── BaseSolutionProjectInfo.cs │ │ ├── FileSystemProjectInfo.cs │ │ ├── GenericProjectInfo.cs │ │ ├── IHasSolutionFolders.cs │ │ ├── ILocationProvider.cs │ │ ├── IProjectInfo.cs │ │ ├── KnownFakeRoot.cs │ │ ├── KnownFakeRoots.cs │ │ ├── LocationNavModel.cs │ │ ├── MiscFilesProjectInfo.cs │ │ └── NullProjectInfo.cs │ ├── ToolkitLocationProvider.cs │ └── WorkspaceLocationProvider.cs ├── Navigator.cs ├── RatingService.cs ├── StructureProviders │ ├── Abstractions │ │ ├── AnchorPoint.cs │ │ ├── AnchorPointTextSpan.cs │ │ ├── BaseStructureModel.cs │ │ ├── FileModel.cs │ │ ├── FunctionModel.cs │ │ ├── IStructureProvider.cs │ │ ├── IStructureProviderFactory.cs │ │ ├── IStructureProviderService.cs │ │ ├── MemberModel.cs │ │ ├── NullBreadcrumbProvider.cs │ │ ├── StructureNavModel.cs │ │ ├── SymbolAncherPoint.cs │ │ └── TypeModel.cs │ ├── BaseStructureProvider.cs │ ├── PlainText │ │ ├── PlainTextFileStructureProvider.cs │ │ └── PlainTextStructureProviderFactory.cs │ ├── Roslyn │ │ ├── RoslynObservableStructureProvider.cs │ │ ├── RoslynStructureProviderFactory.cs │ │ ├── RoslynWorkspaceFileStructureProvider.cs │ │ └── SymbolFileStructureElementModel.cs │ ├── StructureProvider.cs │ ├── StructureProviderService.cs │ ├── StructuredDocumentStructureProvider.cs │ └── Xml │ │ ├── Models │ │ └── XmlNodeStructureModel.cs │ │ ├── XPathSegment.cs │ │ ├── XPathSegmentKind.cs │ │ ├── XmlFileStructureProvider.cs │ │ └── XmlStructureProviderFactory.cs ├── TextViewExtensions.cs └── WorkspaceMonitor.cs ├── Themes ├── EditorBar.Compact.xaml ├── EditorBar.Normal.xaml ├── Generic.ChevronButton.xaml └── Generic.xaml ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── ViewModels ├── Breadcrumbs │ ├── BreadcrumbModel(of TModel).cs │ ├── BreadcrumbModel.cs │ ├── PhysicalDirectoryBreadcrumbModel.cs │ ├── PhysicalDirectoryModel.cs │ ├── ProjectContainerBreadcrumbModel.cs │ └── StructureBreadcrumbViewModel.cs ├── EditorBarViewModel.cs ├── EditorSegmentOptionsViewModel.cs ├── EnumViewModel.cs ├── LegacyLabelViewModel.cs ├── LocationBreadcrumbsViewModel.cs ├── MemberListItemViewModel.cs ├── OptionsPageViewModel.cs ├── SeparatorListItemViewModel.cs └── StructuralBreadcrumbsViewModel.cs ├── source.extension.cs └── source.extension.vsixmanifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /EditorBar.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/EditorBar.sln.DotSettings -------------------------------------------------------------------------------- /EditorBar.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/EditorBar.slnx -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/README.md -------------------------------------------------------------------------------- /assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/Icon.png -------------------------------------------------------------------------------- /assets/breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/breadcrumbs.png -------------------------------------------------------------------------------- /assets/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/dropdown.png -------------------------------------------------------------------------------- /assets/marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/marketplace.md -------------------------------------------------------------------------------- /assets/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/options.png -------------------------------------------------------------------------------- /assets/screenshot-dropdowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/screenshot-dropdowns.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /settings.VisualStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/settings.VisualStudio.json -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/BaseMenuContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/BaseMenuContextCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/IMenuContextService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/IMenuContextService.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/MenuContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/MenuContext.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/MenuContextService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/MenuContextService.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/MenuExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/MenuExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/MenuId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/MenuId.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Abstractions/MenuIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Abstractions/MenuIdAttribute.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/BaseFileActionMenuContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/BaseFileActionMenuContextCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/CopyFullPathToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/CopyFullPathToClipboardCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/CopyRelativePathToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/CopyRelativePathToClipboardCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/FileActionMenuContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/FileActionMenuContext.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/LocateInSolutionExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/LocateInSolutionExplorerCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/OpenContainingFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/OpenContainingFolderCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/OpenInDefaultEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/OpenInDefaultEditorCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/File/OpenInExternalEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/File/OpenInExternalEditorCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/General/BaseFocusBreadcrumbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/General/BaseFocusBreadcrumbCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/General/EditorBarOptionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/General/EditorBarOptionsCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/General/FocusEditorBarFileCrumbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/General/FocusEditorBarFileCrumbCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/General/FocusEditorBarInnermostTypeCrumbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/General/FocusEditorBarInnermostTypeCrumbCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/General/FocusEditorBarProjectBreadcrumbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/General/FocusEditorBarProjectBreadcrumbCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/General/ToggleEditorBarCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/General/ToggleEditorBarCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/BaseLocationMenuContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/BaseLocationMenuContextCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/BasePhysicalLocationContextMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/BasePhysicalLocationContextMenuCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/CopyFullPathContainingFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/CopyFullPathContainingFolderCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/CopyPhysicalDirectoryFullPathContainingFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/CopyPhysicalDirectoryFullPathContainingFolderCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/LocatePhysicalDirectoryInSolutionExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/LocatePhysicalDirectoryInSolutionExplorerCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/LocateProjectInSolutionExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/LocateProjectInSolutionExplorerCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/LocationBreadcrumbMenuContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/LocationBreadcrumbMenuContext.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/OpenPhysicalDirectoryContainingFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/OpenPhysicalDirectoryContainingFolderCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/OpenProjectContainingFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/OpenProjectContainingFolderCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Location/OpenProjectPropertiesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Location/OpenProjectPropertiesCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Structural/BaseStructureMenuContextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Structural/BaseStructureMenuContextCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Structural/CopyDocIdCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Structural/CopyDocIdCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Structural/CopyFullNameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Structural/CopyFullNameCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Structural/NavigateToCodeElementCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Structural/NavigateToCodeElementCommand.cs -------------------------------------------------------------------------------- /src/EditorBar/Commands/Structural/StructureBreadcrumbMenuContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Commands/Structural/StructureBreadcrumbMenuContext.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/ChevronButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/ChevronButton.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/ColorButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/ColorButton.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/ColorButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/ColorButton.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/ColorSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/ColorSelector.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/ColorSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/ColorSelector.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/EditorBarBreadcrumbs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/EditorBarBreadcrumbs.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/EditorBarBreadcrumbs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/EditorBarBreadcrumbs.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/EditorBarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/EditorBarControl.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/EditorBarControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/EditorBarControl.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/EditorBarControlContainer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/EditorBarControlContainer.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/EditorBarControlContainer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/EditorBarControlContainer.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/IconDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/IconDisplay.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/IconDisplay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/IconDisplay.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/LegacyFileLabel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/LegacyFileLabel.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/LegacyFileLabel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/LegacyFileLabel.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/MemberList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/MemberList.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/MemberList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/MemberList.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/MemberListPopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/MemberListPopup.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/MemberListPopup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/MemberListPopup.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/Options/GeneralOptionsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/Options/GeneralOptionsControl.xaml -------------------------------------------------------------------------------- /src/EditorBar/Controls/Options/GeneralOptionsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/Options/GeneralOptionsControl.xaml.cs -------------------------------------------------------------------------------- /src/EditorBar/Controls/SymbolChevronButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Controls/SymbolChevronButton.cs -------------------------------------------------------------------------------- /src/EditorBar/EditorBarPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/EditorBarPackage.cs -------------------------------------------------------------------------------- /src/EditorBar/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/GlobalUsings.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/CodeAnalysis/CodeAnalysisHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/CodeAnalysis/CodeAnalysisHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/CodeAnalysis/FileStructureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/CodeAnalysis/FileStructureHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/CodeAnalysis/IconProviderForCodeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/CodeAnalysis/IconProviderForCodeAnalysis.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/CodeAnalysis/RoslynWorkspaceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/CodeAnalysis/RoslynWorkspaceExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/CodeAnalysis/SourceTextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/CodeAnalysis/SourceTextExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/CodeAnalysis/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/CodeAnalysis/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/DisposableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/DisposableExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/IMyEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/IMyEventSource.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/ISettingsRefreshAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/ISettingsRefreshAggregator.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/IStructureRefreshAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/IStructureRefreshAggregator.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/SettingsRefreshEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/SettingsRefreshEventArgs.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/SettingsRefreshReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/SettingsRefreshReason.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/SolutionProjectChangeReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/SolutionProjectChangeReason.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/Abstractions/SolutionProjectChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/Abstractions/SolutionProjectChangedEventArgs.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/CompositionEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/CompositionEventSource.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/GenericEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/GenericEventSource.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/LocationBreadcrumbEventAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/LocationBreadcrumbEventAggregator.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/SettingsRefreshAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/SettingsRefreshAggregator.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/SolutionProjectChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/SolutionProjectChangeTracker.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Events/StructureRefreshAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Events/StructureRefreshAggregator.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/IconIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/IconIds.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/IntelliSenseProjectContextContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/IntelliSenseProjectContextContainer.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Launcher.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Matchers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Matchers.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/PathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/PathUtils.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Presentation/BrushHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Presentation/BrushHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Presentation/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Presentation/ColorExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Presentation/StyleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Presentation/StyleHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Rx/Pauser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Rx/Pauser.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Rx/RxLoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Rx/RxLoggingExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Rx/SelectNothingObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Rx/SelectNothingObservableExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Rx/SubjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Rx/SubjectFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/Rx/ThrottleFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/Rx/ThrottleFirst.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/SingleActionGatedExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/SingleActionGatedExecutor.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/StackedImageMoniker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/StackedImageMoniker.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/StopwatchStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/StopwatchStatement.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/StringHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/SymbolUsageKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/SymbolUsageKind.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/BulkObservableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/BulkObservableCollectionExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/ClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/ClipboardHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/ProjectProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/ProjectProperties.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/TextViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/TextViewExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/VirtualProjectFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/VirtualProjectFinder.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/VisualStudioHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/VisualStudioHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/Helpers/VisualStudio/VsImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Helpers/VisualStudio/VsImageHelper.cs -------------------------------------------------------------------------------- /src/EditorBar/JPSoftworks.EditorBar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/JPSoftworks.EditorBar.csproj -------------------------------------------------------------------------------- /src/EditorBar/JPSoftworks.EditorBar.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/JPSoftworks.EditorBar.csproj.DotSettings -------------------------------------------------------------------------------- /src/EditorBar/MefComponents/BaseEditorBarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/MefComponents/BaseEditorBarFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/MefComponents/BottomEditorBarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/MefComponents/BottomEditorBarFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/MefComponents/EditorBarMargin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/MefComponents/EditorBarMargin.cs -------------------------------------------------------------------------------- /src/EditorBar/MefComponents/TopEditorBarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/MefComponents/TopEditorBarFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/BarPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/BarPosition.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/DisplayStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/DisplayStyle.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/EnumToDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/EnumToDescriptionConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/FileAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/FileAction.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/FileLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/FileLabel.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/GeneralOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/GeneralOptionPage.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/GeneralOptionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/GeneralOptionsModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Options/VisualStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Options/VisualStyle.cs -------------------------------------------------------------------------------- /src/EditorBar/Polyfill/NullabilityPolyfills.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Polyfill/NullabilityPolyfills.cs -------------------------------------------------------------------------------- /src/EditorBar/Polyfill/System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Polyfill/System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute.cs -------------------------------------------------------------------------------- /src/EditorBar/Polyfill/System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Polyfill/System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.cs -------------------------------------------------------------------------------- /src/EditorBar/Polyfill/System.Runtime.CompilerServices.IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Polyfill/System.Runtime.CompilerServices.IsExternalInit.cs -------------------------------------------------------------------------------- /src/EditorBar/Polyfill/System.Runtime.CompilerServices.RequiredMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Polyfill/System.Runtime.CompilerServices.RequiredMemberAttribute.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/BackgroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/BackgroundConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/BooleanConverter (of T).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/BooleanConverter (of T).cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/BrightnessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/BrightnessConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/ColorToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/ColorToBrushConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/ContrastForegroundBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/ContrastForegroundBrushConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/GenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/GenericType.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/InvertedBooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/InvertedBooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/IsFirstItemConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/IsFirstItemConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/LeftBorderThicknessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/LeftBorderThicknessConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/MonikerToCollapsedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/MonikerToCollapsedConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/MyItemContainerStyleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/MyItemContainerStyleSelector.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/NullToCollapsedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/NullToCollapsedConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/OrConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/OrConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/SeparatorStrokeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/SeparatorStrokeConverter.cs -------------------------------------------------------------------------------- /src/EditorBar/Presentation/SymbolDateTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Presentation/SymbolDateTemplateSelector.cs -------------------------------------------------------------------------------- /src/EditorBar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Resources/CommandIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Resources/CommandIcons.png -------------------------------------------------------------------------------- /src/EditorBar/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Resources/Icon.png -------------------------------------------------------------------------------- /src/EditorBar/Resources/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Resources/Strings.Designer.cs -------------------------------------------------------------------------------- /src/EditorBar/Resources/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Resources/Strings.resx -------------------------------------------------------------------------------- /src/EditorBar/Services/Abstractions/FileStructureElementModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/Abstractions/FileStructureElementModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/Abstractions/ICodeNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/Abstractions/ICodeNavigationService.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/Abstractions/ITextNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/Abstractions/ITextNavigationService.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/Abstractions/IWorkspaceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/Abstractions/IWorkspaceMonitor.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/CodeNavigationDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/CodeNavigationDecorator.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/CodeNavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/CodeNavigationService.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/BaseSolutionProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/BaseSolutionProjectInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/FileSystemProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/FileSystemProjectInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/GenericProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/GenericProjectInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/IHasSolutionFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/IHasSolutionFolders.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/ILocationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/ILocationProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/IProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/IProjectInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/KnownFakeRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/KnownFakeRoot.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/KnownFakeRoots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/KnownFakeRoots.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/LocationNavModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/LocationNavModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/MiscFilesProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/MiscFilesProjectInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/Abstractions/NullProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/Abstractions/NullProjectInfo.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/ToolkitLocationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/ToolkitLocationProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/LocationProviders/WorkspaceLocationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/LocationProviders/WorkspaceLocationProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/Navigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/Navigator.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/RatingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/RatingService.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/AnchorPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/AnchorPoint.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/AnchorPointTextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/AnchorPointTextSpan.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/BaseStructureModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/BaseStructureModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/FileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/FileModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/FunctionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/FunctionModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/IStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/IStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/IStructureProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/IStructureProviderFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/IStructureProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/IStructureProviderService.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/MemberModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/MemberModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/NullBreadcrumbProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/NullBreadcrumbProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/StructureNavModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/StructureNavModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/SymbolAncherPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/SymbolAncherPoint.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Abstractions/TypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Abstractions/TypeModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/BaseStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/BaseStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/PlainText/PlainTextFileStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/PlainText/PlainTextFileStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/PlainText/PlainTextStructureProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/PlainText/PlainTextStructureProviderFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Roslyn/RoslynObservableStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Roslyn/RoslynObservableStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Roslyn/RoslynStructureProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Roslyn/RoslynStructureProviderFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Roslyn/RoslynWorkspaceFileStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Roslyn/RoslynWorkspaceFileStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Roslyn/SymbolFileStructureElementModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Roslyn/SymbolFileStructureElementModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/StructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/StructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/StructureProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/StructureProviderService.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/StructuredDocumentStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/StructuredDocumentStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Xml/Models/XmlNodeStructureModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Xml/Models/XmlNodeStructureModel.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Xml/XPathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Xml/XPathSegment.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Xml/XPathSegmentKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Xml/XPathSegmentKind.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Xml/XmlFileStructureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Xml/XmlFileStructureProvider.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/StructureProviders/Xml/XmlStructureProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/StructureProviders/Xml/XmlStructureProviderFactory.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/TextViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/TextViewExtensions.cs -------------------------------------------------------------------------------- /src/EditorBar/Services/WorkspaceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Services/WorkspaceMonitor.cs -------------------------------------------------------------------------------- /src/EditorBar/Themes/EditorBar.Compact.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Themes/EditorBar.Compact.xaml -------------------------------------------------------------------------------- /src/EditorBar/Themes/EditorBar.Normal.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Themes/EditorBar.Normal.xaml -------------------------------------------------------------------------------- /src/EditorBar/Themes/Generic.ChevronButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Themes/Generic.ChevronButton.xaml -------------------------------------------------------------------------------- /src/EditorBar/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/EditorBar/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/VSCommandTable.cs -------------------------------------------------------------------------------- /src/EditorBar/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/Breadcrumbs/BreadcrumbModel(of TModel).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/Breadcrumbs/BreadcrumbModel(of TModel).cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/Breadcrumbs/BreadcrumbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/Breadcrumbs/BreadcrumbModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/Breadcrumbs/PhysicalDirectoryBreadcrumbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/Breadcrumbs/PhysicalDirectoryBreadcrumbModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/Breadcrumbs/PhysicalDirectoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/Breadcrumbs/PhysicalDirectoryModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/Breadcrumbs/ProjectContainerBreadcrumbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/Breadcrumbs/ProjectContainerBreadcrumbModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/Breadcrumbs/StructureBreadcrumbViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/Breadcrumbs/StructureBreadcrumbViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/EditorBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/EditorBarViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/EditorSegmentOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/EditorSegmentOptionsViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/EnumViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/EnumViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/LegacyLabelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/LegacyLabelViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/LocationBreadcrumbsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/LocationBreadcrumbsViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/MemberListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/MemberListItemViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/OptionsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/OptionsPageViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/SeparatorListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/SeparatorListItemViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/ViewModels/StructuralBreadcrumbsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/ViewModels/StructuralBreadcrumbsViewModel.cs -------------------------------------------------------------------------------- /src/EditorBar/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/source.extension.cs -------------------------------------------------------------------------------- /src/EditorBar/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiripolasek/EditorBar/HEAD/src/EditorBar/source.extension.vsixmanifest --------------------------------------------------------------------------------