@@ -206,14 +206,14 @@ impl Vim {
206
206
Ok ( ( ) )
207
207
}
208
208
209
- pub fn updateqflist ( & self , list : & [ QuickfixEntry ] , title : & str , id : i32 ) -> Result < ( ) > {
209
+ pub fn updateqflist ( & self , list : & [ QuickfixEntry ] , title : & str , id : i32 ) -> Result < ( ) > {
210
210
info ! ( "Begin updateqflist" ) ;
211
211
let parms = json ! ( [ [ ] , "r" , { "title" : title, "id" : id, "items" : list} ] ) ;
212
212
self . rpcclient . notify ( "setqflist" , parms) ?;
213
213
Ok ( ( ) )
214
214
}
215
215
216
- pub fn addnewqflist ( & self , list : & [ QuickfixEntry ] , title : & str ) -> Result < ( ) > {
216
+ pub fn addnewqflist ( & self , list : & [ QuickfixEntry ] , title : & str ) -> Result < ( ) > {
217
217
info ! ( "Begin addnewqflist" ) ;
218
218
let parms = json ! ( [ [ ] , " " , { "title" : title, "items" : list} ] ) ;
219
219
self . rpcclient . notify ( "setqflist" , parms) ?;
@@ -222,7 +222,7 @@ impl Vim {
222
222
223
223
pub fn getqfid ( & self , title : & str ) -> Result < i32 > {
224
224
info ! ( "Begin getqfid" ) ;
225
- self . rpcclient . call ( "LSP#GetQfListIdForTitle" , title)
225
+ self . rpcclient . call ( "LSP#GetQfListIdForTitle" , title)
226
226
}
227
227
228
228
pub fn setqflist ( & self , list : & [ QuickfixEntry ] , action : & str , title : & str ) -> Result < ( ) > {
0 commit comments