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 8563e51 commit d21580aCopy full SHA for d21580a
src/language_server_protocol.rs
@@ -296,7 +296,7 @@ impl LanguageClient {
296
text_document: TextDocumentIdentifier {
297
uri: filename.to_url()?,
298
},
299
- position: position,
+ position,
300
301
)?;
302
src/vim.rs
@@ -211,8 +211,8 @@ impl Vim {
211
pub fn set_signs(
212
&self,
213
filename: &str,
214
- signs_to_add: &Vec<Sign>,
215
- signs_to_delete: &Vec<Sign>,
+ signs_to_add: &[Sign],
+ signs_to_delete: &[Sign],
216
) -> Fallible<i8> {
217
self.rpcclient.call(
218
"s:set_signs",
0 commit comments