From 3de8102e7fd25c51b2b2af899dcff16fd3a035c3 Mon Sep 17 00:00:00 2001 From: Ryan Orendorff Date: Mon, 23 Sep 2019 00:01:09 -0700 Subject: [PATCH] fish: revamp descriptions to match bash style --- modules/programs/fish.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/modules/programs/fish.nix b/modules/programs/fish.nix index b5bf77f9c..abc1bfea2 100644 --- a/modules/programs/fish.nix +++ b/modules/programs/fish.nix @@ -64,9 +64,8 @@ in default = {}; example = { ".." = "cd .."; ll = "ls -l"; }; description = '' - Set of aliases for fish shell. See - for an option - format description. + An attribute set that maps aliases (the top level attribute names + in this option) to command strings or directly to build outputs. ''; }; @@ -75,7 +74,9 @@ in default = {}; example = { l = "less"; gco = "git checkout"; }; description = '' - Set of abbreviations for fish shell. + An attribute set that maps aliases (the top level attribute names + in this option) to abbreviations. Abbreviations are expanded with + the longer phrase after they are entered. ''; }; @@ -83,7 +84,8 @@ in type = types.lines; default = ""; description = '' - Shell script code called during fish shell initialisation. + Shell script code called during fish shell + initialisation. ''; }; @@ -91,7 +93,8 @@ in type = types.lines; default = ""; description = '' - Shell script code called during fish login shell initialisation. + Shell script code called during fish login shell + initialisation. ''; }; @@ -99,7 +102,8 @@ in type = types.lines; default = ""; description = '' - Shell script code called during interactive fish shell initialisation. + Shell script code called during interactive fish shell + initialisation. ''; };