Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plugins/project-nvim: deprecate #2791

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion plugins/deprecation.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{ lib, ... }:
let
deprecated = {
# TODO: added 10-23-2024, move to removed after 24.11
# TODO: added 2024-10-23, move to removed after 24.11
"rust-tools" = ''
The `rust-tools` project has been abandoned.
It is recommended to use `rustaceanvim` instead.
'';
# TODO: added 2025-01-04, move to removed after 25.11
"project-nvim" = ''
The project-nvim project has not been updated in 2 years
and is broken on recent Neovim versions (it no longer adds projects
automatically and provides no manual method to add them) use either
telescope-project or projections-nvim.
'';
};
removed = {
# Added 2023-08-29
Expand Down