fish: revamp descriptions to match bash style
This commit is contained in:
parent
665766f8bb
commit
3de8102e7f
|
@ -64,9 +64,8 @@ in
|
||||||
default = {};
|
default = {};
|
||||||
example = { ".." = "cd .."; ll = "ls -l"; };
|
example = { ".." = "cd .."; ll = "ls -l"; };
|
||||||
description = ''
|
description = ''
|
||||||
Set of aliases for fish shell. See
|
An attribute set that maps aliases (the top level attribute names
|
||||||
<option>environment.shellAliases</option> for an option
|
in this option) to command strings or directly to build outputs.
|
||||||
format description.
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -75,7 +74,9 @@ in
|
||||||
default = {};
|
default = {};
|
||||||
example = { l = "less"; gco = "git checkout"; };
|
example = { l = "less"; gco = "git checkout"; };
|
||||||
description = ''
|
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;
|
type = types.lines;
|
||||||
default = "";
|
default = "";
|
||||||
description = ''
|
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;
|
type = types.lines;
|
||||||
default = "";
|
default = "";
|
||||||
description = ''
|
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;
|
type = types.lines;
|
||||||
default = "";
|
default = "";
|
||||||
description = ''
|
description = ''
|
||||||
Shell script code called during interactive fish shell initialisation.
|
Shell script code called during interactive fish shell
|
||||||
|
initialisation.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue