This website works better with JavaScript.
Explore
Help
Sign In
yanguangshaonian
/
aya-template
mirror of
https://github.com/aya-rs/aya-template
Watch
1
Star
0
Fork
You've already forked aya-template
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
b00519ff0d
main
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'b00519ff0d'
${ noResults }
aya-template
/
.vim
/
coc-settings.json
4 lines
89 B
JSON
Raw
Normal View
History
Unescape
Escape
lsp: fix rust-analyzer support on neovim and vscode The project structure was messing with rust-analyzer's ability to correctly find the Cargo.toml for the {{project-name}}-ebpf crate. This patch fixes it by manually defining the project structure in both vscode and neovim. Signed-off-by: William Findlay <william@williamfindlay.com>
3 years ago
{
lsp: use project-name instead of crate_name to generate Cargo.toml path My original patch was broken for crates with names-like-this, since it would incorrectly add underscores instead of dashes to the pathname. This patch fixes the problem.
3 years ago
"rust-analyzer.linkedProjects"
:
[
"Cargo.toml"
,
"{{project-name}}-ebpf/Cargo.toml"
]
lsp: fix rust-analyzer support on neovim and vscode The project structure was messing with rust-analyzer's ability to correctly find the Cargo.toml for the {{project-name}}-ebpf crate. This patch fixes it by manually defining the project structure in both vscode and neovim. Signed-off-by: William Findlay <william@williamfindlay.com>
3 years ago
}