about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorMatthieu Coudron <teto@users.noreply.github.com>2022-06-13 15:25:46 +0200
committerGitHub <noreply@github.com>2022-06-13 15:25:46 +0200
commita1ad23574310f0ca7aedd916192855a3e2a46729 (patch)
treef265a6da7e929cc526ad891cf77160faa886b79a /pkgs/applications/editors/neovim
parent5ed22350508f1fd0b79d56f39552a4ea5c163c2e (diff)
downloadnixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.tar
nixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.tar.gz
nixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.tar.bz2
nixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.tar.lz
nixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.tar.xz
nixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.tar.zst
nixlib-a1ad23574310f0ca7aedd916192855a3e2a46729.zip
vimUtils: deprecate configure.pathogen (#154814)
pathogen does not bring any value compared to vim native packages so
remove it to ease maintainance burden.
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/tests.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/neovim/tests.nix b/pkgs/applications/editors/neovim/tests.nix
index 1e46a59f563b..3163041dabfe 100644
--- a/pkgs/applications/editors/neovim/tests.nix
+++ b/pkgs/applications/editors/neovim/tests.nix
@@ -150,8 +150,8 @@ rec {
   # and do `:call deoplete#enable()`. It will print an error if the remote
   # plugin is not registered.
   test_nvim_with_remote_plugin = neovim.override {
-    extraName = "-pathogen-remote";
-    configure.pathogen.pluginNames = with vimPlugins; [ deoplete-nvim ];
+    extraName = "-remote";
+    configure.packages.foo.start = with vimPlugins; [ deoplete-nvim ];
   };
 
   # only neovim makes use of `requiredPlugins`, test this here