plugins/coverage: Added keymap for the loadLcov command.

This commit is contained in:
m1mir 2024-07-05 09:56:24 +02:00 committed by Matt Sturgeon
parent 4730563e01
commit 87c7757a5b
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 8 additions and 0 deletions

View file

@ -50,6 +50,13 @@ let
command = "Summary";
description = "Displays a coverage summary report in a floating window.";
};
loadLcov = {
command = "LoadLcov";
description = ''
Loads a coverage report from an lcov file but does not display the coverage signs.
Uses the lcov file configuration option.
'';
};
};
in
{

View file

@ -16,6 +16,7 @@
toggle = "<leader>e";
clear = "<leader>f";
summary = "<leader>g";
loadLcov = "<leader>h";
};
autoReload = false;