We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d5f79 commit c73955cCopy full SHA for c73955c
lua/leetcode-ui/question.lua
@@ -91,7 +91,9 @@ function Question:handle_mount()
91
vim.cmd("$tabe " .. self.file:absolute())
92
93
-- https://github.com/kawre/leetcode.nvim/issues/14
94
- if self.lang == "rust" then pcall(require("rust-tools.standalone").start_standalone_client) end
+ if self.lang == "rust" then
95
+ pcall(function() require("rust-tools.standalone").start_standalone_client() end)
96
+ end
97
98
self.bufnr = vim.api.nvim_get_current_buf()
99
self.winid = vim.api.nvim_get_current_win()
0 commit comments