simrat39 / rust-tools.nvim

Tools for better development in rust using neovim's builtin lsp
MIT License
2.17k stars 158 forks source link

How to print type size? #292

Closed NobodyXu closed 1 year ago

NobodyXu commented 1 year ago

rust-analyzer 2022-12-22 now supports showing type sizes (https://github.com/rust-lang/rust-analyzer/pull/13490 , https://github.com/rust-lang/rust-analyzer/pull/13745) but I don't know how to show it using rust-tools.

Is it supported and how to enable this?

rareitems commented 1 year ago

For me it shows that information in both nvim's vim.lsp.buf.hover and rust-tool's require("rust-tools").hover_actions.hover_actions

NobodyXu commented 1 year ago

@rareitems Thanks, I will have a look at this.