about summary refs log tree commit diff
path: root/pkgs/test/vim
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-12-04 11:18:38 +0100
committerNaïm Favier <n@monade.li>2022-12-09 09:55:55 +0100
commit4e5ebcc3ed1de9c5c2001c7d5829f4566e0bde3f (patch)
tree10ff706e19ff94170a66270c87d49e4c4913b865 /pkgs/test/vim
parent35090c8b8b5c0a1282b2c4eab0659f643025cad3 (diff)
vim-full: rename from vim_configurable
Avoids confusion: `vim-full`'s build-time features are configurable, but both
`vim` and `vim-full` are *customizable* (in the sense of user configuration).
Diffstat (limited to 'pkgs/test/vim')
-rw-r--r--pkgs/test/vim/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix
index 488a2fe99c563..4d8e59a306a80 100644
--- a/pkgs/test/vim/default.nix
+++ b/pkgs/test/vim/default.nix
@@ -1,4 +1,4 @@
-{ vimUtils, vim_configurable, writeText, vimPlugins
+{ vimUtils, vim-full, writeText, vimPlugins
 , lib, fetchFromGitHub
 , pkgs
 }:
@@ -14,12 +14,12 @@ in
   ### vim tests
   ##################
 
-  test_vim_with_vim_nix_using_plug = vim_configurable.customize {
+  test_vim_with_vim_nix_using_plug = vim-full.customize {
     name = "vim-with-vim-addon-nix-using-plug";
     vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];
   };
 
-  test_vim_with_vim_nix = vim_configurable.customize {
+  test_vim_with_vim_nix = vim-full.customize {
     name = "vim-with-vim-addon-nix";
     vimrcConfig.packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
   };