├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── media ├── icon.png ├── reset.css ├── sidebar-icon.png ├── sidebar.css ├── sidebar.js └── vscode.css ├── package.json ├── src ├── SidebarProvider.ts ├── authenticate.ts ├── constants.ts ├── extension.ts ├── getNonce.ts ├── git.d.ts └── util.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/README.md -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/media/icon.png -------------------------------------------------------------------------------- /media/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/media/reset.css -------------------------------------------------------------------------------- /media/sidebar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/media/sidebar-icon.png -------------------------------------------------------------------------------- /media/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/media/sidebar.css -------------------------------------------------------------------------------- /media/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/media/sidebar.js -------------------------------------------------------------------------------- /media/vscode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/media/vscode.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/package.json -------------------------------------------------------------------------------- /src/SidebarProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/SidebarProvider.ts -------------------------------------------------------------------------------- /src/authenticate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/authenticate.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/getNonce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/getNonce.ts -------------------------------------------------------------------------------- /src/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/git.d.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cotnw/codiff/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------