lsp_doc

Crates.iolsp_doc
lib.rslsp_doc
version
sourcesrc
created_at2024-11-09 17:10:36.753071
updated_at2024-11-09 17:10:36.753071
descriptionEmbed markdown/text files into Rust documentation attributes for LSP hover/preview
homepage
repositoryhttps://github.com/MasterTemple/lsp_doc/
max_upload_size
id1442231
Cargo.toml error:TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Blake Scampone (MasterTemple)

documentation

README

lsp_doc

What

This crate provides an attribute macro to embed any plain-text file (interpreted as markdown) into the Rust documentation for the LSP hover/preview for any editor.

Why?

Currently you can say either of the following:

/// [](some_file.md)
fn some_func() {}

// or

#[doc = include_str!("../another_file.md")]
fn another_func() {}

However, while these work with cargo doc, neither of these show up in the LSP hover/preview.

This macro resolves that.

Screenshots

Given

*.rs

/// Here is a table:
#[lsp_doc("table.md")]
/// Here is some long piece of text:
#[lsp_doc("lorem.md")]
fn anything() {}

lorem.md

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

table.md

| Header 1 | Header 2 |
| -------- | -------- |
| Value 1  | Value 2  |
| Value 3  | Value 4  |

VSCode

VSCode Screenshot

Neovim

Neovim Screenshot

Note

  • Paths are relative to the crate root directory
  • Multiple embeds for the same item are supported
  • Images are not currently supported
  • File contents are cached by rust-analyzer, so if you frequently edit the embedded file, you might not see immediate updates
Commit count: 4

cargo fmt