Cool addition to my Neovim setup:
It uses the references
command from the LSP to show us how many times a function is used.
I think it’s cool and it helps me to remember to use gr
to navigate to those references instead of grepping through code.
If you’re going to try it, you need this config:
require('symbol-usage').setup({
filetypes = {
elixir = {
symbol_request_pos = 'start',
},
},
})