├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── build_vsix_package.yml ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── activitybar-icon.svg ├── artworks ├── chat.png ├── command-palette.png ├── completed.png ├── generating.png ├── project-continue-warning.png └── project-generation.png ├── crates ├── cursor-core │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── auth │ │ ├── mod.rs │ │ └── token.rs │ │ ├── bindings │ │ ├── mod.rs │ │ ├── progress.rs │ │ ├── progress_location.rs │ │ └── progress_options.rs │ │ ├── context.rs │ │ ├── lib.rs │ │ ├── model_configuration.rs │ │ ├── project │ │ ├── handler.rs │ │ └── mod.rs │ │ ├── request │ │ ├── mod.rs │ │ └── stream.rs │ │ ├── services │ │ ├── chat │ │ │ ├── mod.rs │ │ │ ├── models │ │ │ │ ├── code_chunk.rs │ │ │ │ ├── conversation.rs │ │ │ │ ├── mod.rs │ │ │ │ └── request_body.rs │ │ │ └── session.rs │ │ ├── enveloped_message.rs │ │ ├── generate │ │ │ ├── mod.rs │ │ │ └── request_body.rs │ │ ├── mod.rs │ │ └── stream │ │ │ ├── mod.rs │ │ │ └── models │ │ │ ├── current_file.rs │ │ │ ├── explicit_context.rs │ │ │ ├── mod.rs │ │ │ └── model_details.rs │ │ └── storage.rs └── node-bridge │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── bindings │ ├── abort_signal.rs │ ├── buffer.rs │ ├── console.rs │ ├── https.rs │ └── mod.rs │ ├── futures.rs │ ├── http_client.rs │ ├── lib.rs │ └── macros.rs ├── icon.png ├── package.json ├── src ├── common │ ├── chatService │ │ ├── index.ts │ │ └── model.ts │ └── ipc │ │ ├── base.ts │ │ ├── extensionHost.ts │ │ ├── index.ts │ │ └── webview.ts ├── extension │ ├── chat │ │ ├── chatPanelProvider.ts │ │ ├── chatServiceImpl.ts │ │ └── core.ts │ ├── context.ts │ ├── generate │ │ ├── core.ts │ │ ├── generateSession.ts │ │ ├── index.ts │ │ ├── resultStream.ts │ │ └── scratchpad.ts │ ├── globalState.ts │ ├── index.ts │ ├── project.ts │ └── utils.ts └── webview │ ├── chat │ ├── IndeterminateProgressBar.tsx │ ├── MessageCodeBlock.tsx │ ├── MessageItem.tsx │ ├── chatViewServiceImpl.ts │ ├── index.tsx │ └── style.css │ ├── codicons │ ├── codicon.css │ └── codicon.ttf │ ├── global.d.ts │ ├── index.tsx │ └── style.css ├── tsconfig.json ├── webpack.config.js └── webpack.webview.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build_vsix_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.github/workflows/build_vsix_package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["crates/*"] 3 | resolver = "2" 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/README.md -------------------------------------------------------------------------------- /activitybar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/activitybar-icon.svg -------------------------------------------------------------------------------- /artworks/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/artworks/chat.png -------------------------------------------------------------------------------- /artworks/command-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/artworks/command-palette.png -------------------------------------------------------------------------------- /artworks/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/artworks/completed.png -------------------------------------------------------------------------------- /artworks/generating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/artworks/generating.png -------------------------------------------------------------------------------- /artworks/project-continue-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/artworks/project-continue-warning.png -------------------------------------------------------------------------------- /artworks/project-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/artworks/project-generation.png -------------------------------------------------------------------------------- /crates/cursor-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/Cargo.toml -------------------------------------------------------------------------------- /crates/cursor-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/README.md -------------------------------------------------------------------------------- /crates/cursor-core/src/auth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/auth/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/auth/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/auth/token.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/bindings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/bindings/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/bindings/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/bindings/progress.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/bindings/progress_location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/bindings/progress_location.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/bindings/progress_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/bindings/progress_options.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/context.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/lib.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/model_configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/model_configuration.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/project/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/project/handler.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/project/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/request/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/request/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/request/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/request/stream.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/chat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/chat/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/chat/models/code_chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/chat/models/code_chunk.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/chat/models/conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/chat/models/conversation.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/chat/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/chat/models/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/chat/models/request_body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/chat/models/request_body.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/chat/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/chat/session.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/enveloped_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/enveloped_message.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/generate/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/generate/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/generate/request_body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/generate/request_body.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/stream/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/stream/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/stream/models/current_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/stream/models/current_file.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/stream/models/explicit_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/stream/models/explicit_context.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/stream/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/stream/models/mod.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/services/stream/models/model_details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/services/stream/models/model_details.rs -------------------------------------------------------------------------------- /crates/cursor-core/src/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/cursor-core/src/storage.rs -------------------------------------------------------------------------------- /crates/node-bridge/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/Cargo.lock -------------------------------------------------------------------------------- /crates/node-bridge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/Cargo.toml -------------------------------------------------------------------------------- /crates/node-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/README.md -------------------------------------------------------------------------------- /crates/node-bridge/src/bindings/abort_signal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/bindings/abort_signal.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/bindings/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/bindings/buffer.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/bindings/console.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/bindings/console.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/bindings/https.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/bindings/https.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/bindings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/bindings/mod.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/futures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/futures.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/http_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/http_client.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/lib.rs -------------------------------------------------------------------------------- /crates/node-bridge/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/crates/node-bridge/src/macros.rs -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/package.json -------------------------------------------------------------------------------- /src/common/chatService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/common/chatService/index.ts -------------------------------------------------------------------------------- /src/common/chatService/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/common/chatService/model.ts -------------------------------------------------------------------------------- /src/common/ipc/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/common/ipc/base.ts -------------------------------------------------------------------------------- /src/common/ipc/extensionHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/common/ipc/extensionHost.ts -------------------------------------------------------------------------------- /src/common/ipc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/common/ipc/index.ts -------------------------------------------------------------------------------- /src/common/ipc/webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/common/ipc/webview.ts -------------------------------------------------------------------------------- /src/extension/chat/chatPanelProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/chat/chatPanelProvider.ts -------------------------------------------------------------------------------- /src/extension/chat/chatServiceImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/chat/chatServiceImpl.ts -------------------------------------------------------------------------------- /src/extension/chat/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/chat/core.ts -------------------------------------------------------------------------------- /src/extension/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/context.ts -------------------------------------------------------------------------------- /src/extension/generate/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/generate/core.ts -------------------------------------------------------------------------------- /src/extension/generate/generateSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/generate/generateSession.ts -------------------------------------------------------------------------------- /src/extension/generate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/generate/index.ts -------------------------------------------------------------------------------- /src/extension/generate/resultStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/generate/resultStream.ts -------------------------------------------------------------------------------- /src/extension/generate/scratchpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/generate/scratchpad.ts -------------------------------------------------------------------------------- /src/extension/globalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/globalState.ts -------------------------------------------------------------------------------- /src/extension/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/index.ts -------------------------------------------------------------------------------- /src/extension/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/project.ts -------------------------------------------------------------------------------- /src/extension/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/extension/utils.ts -------------------------------------------------------------------------------- /src/webview/chat/IndeterminateProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/chat/IndeterminateProgressBar.tsx -------------------------------------------------------------------------------- /src/webview/chat/MessageCodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/chat/MessageCodeBlock.tsx -------------------------------------------------------------------------------- /src/webview/chat/MessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/chat/MessageItem.tsx -------------------------------------------------------------------------------- /src/webview/chat/chatViewServiceImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/chat/chatViewServiceImpl.ts -------------------------------------------------------------------------------- /src/webview/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/chat/index.tsx -------------------------------------------------------------------------------- /src/webview/chat/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/chat/style.css -------------------------------------------------------------------------------- /src/webview/codicons/codicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/codicons/codicon.css -------------------------------------------------------------------------------- /src/webview/codicons/codicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/codicons/codicon.ttf -------------------------------------------------------------------------------- /src/webview/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/global.d.ts -------------------------------------------------------------------------------- /src/webview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/index.tsx -------------------------------------------------------------------------------- /src/webview/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/src/webview/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.webview.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helixform/CodeCursor/HEAD/webpack.webview.config.js --------------------------------------------------------------------------------