typescript-tools.nvim
typescript-tools.nvim copied to clipboard
code_lens references not working on function declarations
I intend to reopen issue #184 with this.
I found the problem is with function declarations.
// Will not show references
export function Testing() {
return <div>{null}</div>;
}
// Will show references
export const Testing2 = () => {
return <div>{null}</div>;
};