├── .gitattributes ├── .gitignore ├── .nuget └── packages.config ├── BuildChocoPackage.ps1 ├── GripDev.PowerGist.Addin ├── Converters │ ├── BoolToVisibilityConverter.cs │ └── NullToVisbilityConverter.cs ├── GistRepository.cs ├── GitApiConfig.cs ├── GripDev.PowerGist.Addin.csproj ├── ISEInterop │ ├── CloseItems.cs │ ├── Config.cs │ ├── CreateNewFile.cs │ ├── FileSaveHelper.cs │ ├── GetCurrentFileContent.cs │ ├── SaveAllItems.cs │ └── SubscribeToChanges.cs ├── Icons │ ├── Open.png │ └── Save.png ├── MainViewModel.cs ├── PowerGistPanel.xaml ├── PowerGistPanel.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── netfx │ └── System │ │ ├── Guard.cs │ │ └── Windows │ │ └── Input │ │ └── DelegateCommand.cs └── packages.config ├── GripDev.PowerGist.sln ├── LICENSE.MD ├── PowerGistInstallerDebug.ps1 ├── Powergist.nuspec ├── README.md └── chocolateyInstall.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /BuildChocoPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/BuildChocoPackage.ps1 -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Converters/NullToVisbilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Converters/NullToVisbilityConverter.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/GistRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/GistRepository.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/GitApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/GitApiConfig.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/GripDev.PowerGist.Addin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/GripDev.PowerGist.Addin.csproj -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/CloseItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/CloseItems.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/Config.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/CreateNewFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/CreateNewFile.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/FileSaveHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/FileSaveHelper.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/GetCurrentFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/GetCurrentFileContent.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/SaveAllItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/SaveAllItems.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/ISEInterop/SubscribeToChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/ISEInterop/SubscribeToChanges.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Icons/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Icons/Open.png -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Icons/Save.png -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/MainViewModel.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/PowerGistPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/PowerGistPanel.xaml -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/PowerGistPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/PowerGistPanel.xaml.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Properties/Resources.resx -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/Properties/Settings.settings -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/netfx/System/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/netfx/System/Guard.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/netfx/System/Windows/Input/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/netfx/System/Windows/Input/DelegateCommand.cs -------------------------------------------------------------------------------- /GripDev.PowerGist.Addin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.Addin/packages.config -------------------------------------------------------------------------------- /GripDev.PowerGist.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/GripDev.PowerGist.sln -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /PowerGistInstallerDebug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/PowerGistInstallerDebug.ps1 -------------------------------------------------------------------------------- /Powergist.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/Powergist.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/README.md -------------------------------------------------------------------------------- /chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lawrencegripper/PowerGist/HEAD/chocolateyInstall.ps1 --------------------------------------------------------------------------------