1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 10:58:31 +02:00
home-manager/tests/modules/programs/vscode/snippets.nix
Felix Leitz 24c1a6335e
vscode: add options for global and user snippets (#3765)
Co-authored-by: Felix Leitz <felix.leitz92@gmail.com>
2023-03-13 18:45:03 +01:00

72 lines
1.7 KiB
Nix

{ pkgs, ... }:
let
snippetsDir = if pkgs.stdenv.hostPlatform.isDarwin then
"Library/Application Support/Code/User/snippets"
else
".config/Code/User/snippets";
globalSnippetsPath = "${snippetsDir}/global.code-snippets";
globalSnippetsExpectedContent = pkgs.writeText "global.code-snippet" ''
{
"fixme": {
"body": [
"fixme body in global user snippet"
],
"description": "Insert a FIXME remark",
"prefix": [
"fixme"
]
}
}
'';
haskellSnippetsPath = "${snippetsDir}/haskell.json";
haskellSnippetsExpectedContent = pkgs.writeText "haskell.json" ''
{
"impl": {
"body": [
"impl body in user haskell snippet"
],
"description": "Insert an implementation stub",
"prefix": [
"impl"
]
}
}
'';
in {
programs.vscode = {
enable = true;
package = pkgs.writeScriptBin "vscode" "" // { pname = "vscode"; };
globalSnippets = {
fixme = {
prefix = [ "fixme" ];
body = [ "fixme body in global user snippet" ];
description = "Insert a FIXME remark";
};
};
languageSnippets = {
haskell = {
impl = {
prefix = [ "impl" ];
body = [ "impl body in user haskell snippet" ];
description = "Insert an implementation stub";
};
};
};
};
nmt.script = ''
assertFileExists "home-files/${globalSnippetsPath}"
assertFileContent "home-files/${globalSnippetsPath}" "${globalSnippetsExpectedContent}"
assertFileExists "home-files/${haskellSnippetsPath}"
assertFileContent "home-files/${haskellSnippetsPath}" "${haskellSnippetsExpectedContent}"
'';
}