about summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorMatthieu Coudron <886074+teto@users.noreply.github.com>2023-09-26 20:31:31 +0200
committerMatthieu Coudron <886074+teto@users.noreply.github.com>2023-09-27 19:08:38 +0200
commit0ab2c9642991c787c38cc131e7c5c935bff9cd88 (patch)
treea688886e5fdc4886163b4d66b29d6a2938ee7d8f /doc/languages-frameworks
parentc22ca8e82097dc7650053c85509d9369ce8726bf (diff)
downloadnixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar
nixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.gz
nixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.bz2
nixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.lz
nixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.xz
nixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.zst
nixlib-0ab2c9642991c787c38cc131e7c5c935bff9cd88.zip
vimUtils: buildVimPluginFrom2Nix renamed to buildVimPlugin
the `from2Nix` suffix is a legacy from vim2nix but we dont use that anymore. It makes the name of the function unusual and long.
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/vim.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md
index bf0d663179b9..5e25c1ed423e 100644
--- a/doc/languages-frameworks/vim.section.md
+++ b/doc/languages-frameworks/vim.section.md
@@ -134,7 +134,7 @@ If one of your favourite plugins isn't packaged, you can package it yourself:
 { config, pkgs, ... }:
 
 let
-  easygrep = pkgs.vimUtils.buildVimPluginFrom2Nix {
+  easygrep = pkgs.vimUtils.buildVimPlugin {
     name = "vim-easygrep";
     src = pkgs.fetchFromGitHub {
       owner = "dkprice";