tangled
alpha
login
or
join now
althaea.zone
/
candy
0
fork
atom
neovim
0
fork
atom
overview
issues
pulls
pipelines
improve rust keybindings
marshmallow.tngl.sh
9 months ago
717b327e
f98d6dfc
+8
1 changed file
expand all
collapse all
unified
split
candy
ftplugin
rust.lua
+8
candy/ftplugin/rust.lua
···
8
8
},
9
9
dap = {},
10
10
}
11
11
+
12
12
+
vim.keymap.set("n", "gra", function()
13
13
+
vim.cmd.RustLsp("codeAction")
14
14
+
end, { buffer = true, silent = true })
15
15
+
16
16
+
vim.keymap.set("n", "K", function()
17
17
+
vim.cmd.RustLsp({ "hover", "actions" })
18
18
+
end, { buffer = true, silent = true })