1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-06 17:11:05 +01:00

treewide: NixVim/nixvim -> Nixvim

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-12-04 16:36:05 +01:00 committed by Matt Sturgeon
parent 5d1c27e53c
commit 03a51dbf3d
34 changed files with 78 additions and 78 deletions

View file

@ -35,17 +35,17 @@
[
{
name = "checks";
help = "Run all nixvim checks";
help = "Run all Nixvim checks";
# TODO: run tests from the `ci` flake output too?
command = ''
echo "=> Running all nixvim checks..."
echo "=> Running all Nixvim checks..."
${nix} flake check "$@"
'';
}
{
name = "tests";
help = "Run nixvim tests";
help = "Run Nixvim tests";
command =
let
launchTest = pkgs.writeShellApplication {
@ -67,9 +67,9 @@
}
{
name = "test-lib";
help = "Run nixvim library tests";
help = "Run Nixvim library tests";
command = ''
echo "=> Running nixvim library tests for the '${system}' architecture..."
echo "=> Running Nixvim library tests for the '${system}' architecture..."
${nix} build .#checks.${system}.lib-tests "$@"
'';
@ -81,9 +81,9 @@
}
{
name = "docs";
help = "Build nixvim documentation";
help = "Build Nixvim documentation";
command = ''
echo "=> Building nixvim documentation..."
echo "=> Building Nixvim documentation..."
${nix} build .#docs "$@"
'';
@ -92,7 +92,7 @@
name = "serve-docs";
help = "Build and serve documentation locally";
command = ''
echo -e "=> Building nixvim documentation...\n"
echo -e "=> Building Nixvim documentation...\n"
nix run .#docs
'';
}
@ -104,7 +104,7 @@
{
name = "diff-plugins";
command = ''${./diff-plugins.py} "$@"'';
help = "Compare available plugins with another nixvim commit";
help = "Compare available plugins with another Nixvim commit";
}
];
};

View file

@ -9,10 +9,10 @@ from argparse import ArgumentParser, ArgumentTypeError
def main():
"""
Main function to compare nixvim plugins with another revision.
Main function to compare Nixvim plugins with another revision.
"""
parser = ArgumentParser(description="Compare nixvim plugins with another revision")
parser = ArgumentParser(description="Compare Nixvim plugins with another revision")
parser.add_argument(
"base_flakeref",
metavar="before",

View file

@ -43,7 +43,7 @@ let
else if categorizedMaintainers.nixpkgs ? ${obj.github} then
"nixpkgs"
else
throw "${obj.github} is neither a nixvim or nixpkgs maintainer";
throw "${obj.github} is neither a Nixvim or nixpkgs maintainer";
};
}))
lib.listToAttrs

View file

@ -42,7 +42,7 @@ def get_project_root() -> Path:
class MetaMaintainerGenerator:
"""Generates maintainers list using meta.maintainers from nixvim evaluation."""
"""Generates maintainers list using meta.maintainers from Nixvim evaluation."""
def __init__(self, nixvim_root: Path):
self.nixvim_root = nixvim_root