deno/cli/lsp
Kingsword 64525d289a
Some checks are pending
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
feat(fmt): remove UTF-8 BOM instead of maintaining it (#29796)
Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
2025-06-28 00:50:22 -04:00
..
testing chore: Rust 1.86.0 (#29435) 2025-05-25 23:40:48 +02:00
analysis.rs refactor(lsp): remove resolution lookup store from node resolver (#29627) 2025-06-06 21:22:03 +01:00
cache.rs refactor(lsp): separate document and module storage (#28469) 2025-03-31 22:25:27 +01:00
capabilities.rs feat(lsp): jupyter cell continuity using classic scripts (#28769) 2025-04-17 19:39:32 +01:00
client.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
code_lens.rs refactor(lsp): separate document and module storage (#28469) 2025-03-31 22:25:27 +01:00
completions.rs refactor(deno_resolver): extract out CLI's deno_graph::source::Resolver (#29143) 2025-05-03 15:44:08 -04:00
config.rs refactor: rename ts_config to compiler_options (#29769) 2025-06-17 02:07:43 +01:00
diagnostics.rs fix(lsp): don't show no-export diagnostics for type-only npm imports (#29888) 2025-06-26 15:53:05 +01:00
documents.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
jsr.rs fix(vendor): store remote version metadata checksum in vendor folder to ensure lockfile uses that (#29433) 2025-05-29 23:46:15 -04:00
language_server.rs feat(fmt): remove UTF-8 BOM instead of maintaining it (#29796) 2025-06-28 00:50:22 -04:00
logging.rs refactor: put lsp tracing behind flag (#28118) 2025-02-14 17:17:52 +00:00
lsp_custom.rs feat(lsp): add description in TaskDefinition (#29244) 2025-05-12 23:33:38 +01:00
mod.rs refactor: add NpmInstallerFactory and push more functionality down into deno_npm_installer (#29342) 2025-05-17 15:10:06 -04:00
npm.rs refactor(lsp): remove Send + Sync requirement (#28035) 2025-02-12 13:37:47 +00:00
parent_process_checker.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
path_to_regex.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
performance.rs refactor(lsp): remove Send + Sync requirement (#28035) 2025-02-12 13:37:47 +00:00
README.md docs: fix broken deno manual link (#20667) 2023-09-25 14:09:27 +02:00
refactor.rs refactor(lsp): separate document and module storage (#28469) 2025-03-31 22:25:27 +01:00
registries.rs refactor: move CliFileFetcher and DenoGraphLoader into deno_resolver::file_fetcher (#29473) 2025-05-30 10:10:33 -04:00
repl.rs refactor: add NpmInstallerFactory and push more functionality down into deno_npm_installer (#29342) 2025-05-17 15:10:06 -04:00
resolver.rs fix(install/global): resolve bin name from npm packument (#29884) 2025-06-25 15:10:26 -04:00
search.rs refactor(lsp): remove Send + Sync requirement (#28035) 2025-02-12 13:37:47 +00:00
semantic_tokens.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
text.rs perf(lsp): don't diff 10,000+ line files for formatting (#29162) 2025-05-07 16:51:04 +01:00
trace.rs refactor: put lsp tracing behind flag (#28118) 2025-02-14 17:17:52 +00:00
tsc.rs refactor: rename ts_config to compiler_options (#29769) 2025-06-17 02:07:43 +01:00
urls.rs fix(lsp): normalize all uris originating from client (#29019) 2025-04-28 21:00:14 +01:00

Deno Language Server

The Deno Language Server provides a server implementation of the Language Server Protocol which is specifically tailored to provide a Deno view of code. It is integrated into the command line and can be started via the lsp sub-command.

This documentation has been moved to the Deno manual.