mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins/lsp: no call fn in keymaps.extra example
Because by calling we do not get the function reference but its return value, instead.
This commit is contained in:
parent
81df7156ae
commit
46f658d960
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ in
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
key = "gd";
|
key = "gd";
|
||||||
action.__raw = "require('telescope.builtin').lsp_definitions()";
|
action.__raw = "require('telescope.builtin').lsp_definitions";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
key = "K";
|
key = "K";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue