@@ -206,14 +206,14 @@ impl Vim {
206206 Ok ( ( ) )
207207 }
208208
209- pub fn updateqflist ( & self , list : & [ QuickfixEntry ] , title : & str , id : i32 ) -> Result < ( ) > {
209+ pub fn updateqflist ( & self , list : & [ QuickfixEntry ] , title : & str , id : i32 ) -> Result < ( ) > {
210210 info ! ( "Begin updateqflist" ) ;
211211 let parms = json ! ( [ [ ] , "r" , { "title" : title, "id" : id, "items" : list} ] ) ;
212212 self . rpcclient . notify ( "setqflist" , parms) ?;
213213 Ok ( ( ) )
214214 }
215215
216- pub fn addnewqflist ( & self , list : & [ QuickfixEntry ] , title : & str ) -> Result < ( ) > {
216+ pub fn addnewqflist ( & self , list : & [ QuickfixEntry ] , title : & str ) -> Result < ( ) > {
217217 info ! ( "Begin addnewqflist" ) ;
218218 let parms = json ! ( [ [ ] , " " , { "title" : title, "items" : list} ] ) ;
219219 self . rpcclient . notify ( "setqflist" , parms) ?;
@@ -222,7 +222,7 @@ impl Vim {
222222
223223 pub fn getqfid ( & self , title : & str ) -> Result < i32 > {
224224 info ! ( "Begin getqfid" ) ;
225- self . rpcclient . call ( "LSP#GetQfListIdForTitle" , title)
225+ self . rpcclient . call ( "LSP#GetQfListIdForTitle" , title)
226226 }
227227
228228 pub fn setqflist ( & self , list : & [ QuickfixEntry ] , action : & str , title : & str ) -> Result < ( ) > {
0 commit comments