mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
vscode: allow argument for keybind to any json value (#2418)
This commit is contained in:
parent
9282dbc1fa
commit
158bc59398
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ in {
|
||||||
|
|
||||||
# https://code.visualstudio.com/docs/getstarted/keybindings#_command-arguments
|
# https://code.visualstudio.com/docs/getstarted/keybindings#_command-arguments
|
||||||
args = mkOption {
|
args = mkOption {
|
||||||
type = types.nullOr (types.attrs);
|
type = types.nullOr (jsonFormat.type);
|
||||||
default = null;
|
default = null;
|
||||||
example = { direction = "up"; };
|
example = { direction = "up"; };
|
||||||
description = "Optional arguments for a command.";
|
description = "Optional arguments for a command.";
|
||||||
|
|
Loading…
Reference in a new issue