Skip to content

Commit

Permalink
plugins/lsp: no call fn in keymaps.extra example
Browse files Browse the repository at this point in the history
Because by calling we do not get the function reference but its return
value, instead.
  • Loading branch information
mightyiam authored and nix-infra-bot committed Oct 24, 2024
1 parent 81df715 commit 46f658d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/lsp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ in
}
{
key = "gd";
action.__raw = "require('telescope.builtin').lsp_definitions()";
action.__raw = "require('telescope.builtin').lsp_definitions";
}
{
key = "K";
Expand Down

0 comments on commit 46f658d

Please sign in to comment.