├── .gitattributes ├── .gitignore ├── FileDiffer.sln ├── LICENSE ├── README.md ├── SUPPORT.md ├── appveyor.yml ├── art ├── context-menu.png ├── diff-view.png ├── editor.png ├── multi-selection.png └── single-selection.png └── src ├── Commands ├── ClipboardCommand.cs ├── DocumentClipboardCommand.cs ├── DocumentFileCommand.cs ├── DocumentSavedCommand.cs ├── FilesOnDiskCommand.cs ├── SelectedFilesCommand.cs ├── SelectionClipboardCommand.cs └── UnmodifiedCommand.cs ├── ExtensionMethods.cs ├── FileDiffer.csproj ├── Properties └── AssemblyInfo.cs ├── Resources └── Icon.png ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── VSPackage.cs ├── source.extension.cs └── source.extension.vsixmanifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/.gitignore -------------------------------------------------------------------------------- /FileDiffer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/FileDiffer.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/art/context-menu.png -------------------------------------------------------------------------------- /art/diff-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/art/diff-view.png -------------------------------------------------------------------------------- /art/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/art/editor.png -------------------------------------------------------------------------------- /art/multi-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/art/multi-selection.png -------------------------------------------------------------------------------- /art/single-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/art/single-selection.png -------------------------------------------------------------------------------- /src/Commands/ClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/ClipboardCommand.cs -------------------------------------------------------------------------------- /src/Commands/DocumentClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/DocumentClipboardCommand.cs -------------------------------------------------------------------------------- /src/Commands/DocumentFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/DocumentFileCommand.cs -------------------------------------------------------------------------------- /src/Commands/DocumentSavedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/DocumentSavedCommand.cs -------------------------------------------------------------------------------- /src/Commands/FilesOnDiskCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/FilesOnDiskCommand.cs -------------------------------------------------------------------------------- /src/Commands/SelectedFilesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/SelectedFilesCommand.cs -------------------------------------------------------------------------------- /src/Commands/SelectionClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/SelectionClipboardCommand.cs -------------------------------------------------------------------------------- /src/Commands/UnmodifiedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Commands/UnmodifiedCommand.cs -------------------------------------------------------------------------------- /src/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/FileDiffer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/FileDiffer.csproj -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/VSCommandTable.cs -------------------------------------------------------------------------------- /src/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/VSPackage.cs -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileDiffer/HEAD/src/source.extension.vsixmanifest --------------------------------------------------------------------------------