Reverted to when RT was present (Note lsp keybinds not working)

This commit is contained in:
Luke Else 2023-03-16 22:25:40 +00:00
parent 728a6bd880
commit d57e050ea8
3 changed files with 47 additions and 22 deletions

View File

@ -1,20 +0,0 @@
local inlay_hints = require('lsp_extensions.inlay_hints')
local M = {}
-- Global function, so you can just call it on the lua side
ShowInlineInlayHints = function()
vim.lsp.buf_request(0, 'rust-analyzer/inlayHints', inlay_hints.get_params(), inlay_hints.get_callback {
only_current_line = true
})
end
-- @rockerboo
M.show_line_hints_on_cursor_events = function()
vim.cmd [[augroup ShowLineHints]]
vim.cmd [[ au!]]
vim.cmd [[ autocmd CursorHold,CursorHoldI,CursorMoved *.rs :lua ShowInlineInlayHints()]]
vim.cmd [[augroup END]]
end
return M

45
nvim/after/plugin/rt.lua Normal file
View File

@ -0,0 +1,45 @@
local opts = {
tools = { -- rust-tools options
-- automatically call RustReloadWorkspace when writing to a Cargo.toml file.
reload_workspace_from_cargo_toml = true,
-- These apply to the default RustSetInlayHints command
inlay_hints = {
-- automatically set inlay hints (type hints)
-- default: true
auto = true,
-- Only show inlay hints for the current line
only_current_line = false,
-- whether to show parameter hints with the inlay hints or not
-- default: true
show_parameter_hints = true,
-- prefix for parameter hints
-- default: "<-"
parameter_hints_prefix = "<- ",
-- prefix for all the other hints (type, chaining)
-- default: "=>"
other_hints_prefix = "=> ",
-- whether to align to the length of the longest line in the file
max_len_align = false,
-- padding from the left if max_len_align is true
max_len_align_padding = 1,
-- whether to align to the extreme right or not
right_align = false,
-- padding from the right if right_align is true
right_align_padding = 7,
-- The color of the hints
highlight = "Comment",
},
},
}
require('rust-tools').setup(opts)

View File

@ -57,8 +57,8 @@ return require('packer').startup(function(use)
} }
} }
-- Type Inlay -- Rust tools
use('nvim-lua/lsp_extensions.nvim') use 'simrat39/rust-tools.nvim'
-- Debugger -- Debugger
use 'nvim-lua/plenary.nvim' use 'nvim-lua/plenary.nvim'