PDF Viewer framework bug fixes and integrated functionallity into texlab lsp implementation

This commit is contained in:
isaacST08 2025-01-30 18:14:51 -07:00
commit 95a0125ce0
4 changed files with 42 additions and 38 deletions

View file

@ -32,11 +32,11 @@ in (
args = mkOption {
type = listOf str;
default = [ "--unique" "file:%p#src:%l%f" ];
default = ["--unique" "file:%p#src:%l%f"];
description = "Arguments to pass to the viewer.";
};
};
args = viewerCfg: ( viewerCfg.args );
argsFunction = viewerCfg: (viewerCfg.args);
}
)