diff --git a/README.md b/README.md index faa15e1..0082cd8 100644 --- a/README.md +++ b/README.md @@ -666,6 +666,9 @@ require('rust-tools').setup({ server = { on_attach = function(client, bufnr) require('navigator.lspclient.mapping').setup({client=client, bufnr=bufnr}) -- setup navigator keymaps here, + + require("navigator.dochighlight").documentHighlight(bufnr) + require('navigator.codeAction').code_action_prompt(bufnr) -- otherwise, you can define your own commands to call navigator functions end, } @@ -675,6 +678,8 @@ require("clangd_extensions").setup { server = { on_attach = function(client, bufnr) require('navigator.lspclient.mapping').setup({client=client, bufnr=bufnr}) -- setup navigator keymaps here, + require("navigator.dochighlight").documentHighlight(bufnr) + require('navigator.codeAction').code_action_prompt(bufnr) -- otherwise, you can define your own commands to call navigator functions end, }