@@ -153,14 +153,14 @@ impl Vim {
153153 Ok ( ( ) )
154154 }
155155
156- pub fn updateqflist ( & self , list : & [ QuickfixEntry ] , title : & str , id : i32 ) -> Fallible < ( ) > {
156+ pub fn updateqflist ( & self , list : & [ QuickfixEntry ] , title : & str , id : i32 ) -> Fallible < ( ) > {
157157 info ! ( "Begin updateqflist" ) ;
158158 let parms = json ! ( [ [ ] , "r" , { "title" : title, "id" : id, "items" : list} ] ) ;
159159 self . rpcclient . notify ( "setqflist" , parms) ?;
160160 Ok ( ( ) )
161161 }
162162
163- pub fn addnewqflist ( & self , list : & [ QuickfixEntry ] , title : & str ) -> Fallible < ( ) > {
163+ pub fn addnewqflist ( & self , list : & [ QuickfixEntry ] , title : & str ) -> Fallible < ( ) > {
164164 info ! ( "Begin addnewqflist" ) ;
165165 let parms = json ! ( [ [ ] , " " , { "title" : title, "items" : list} ] ) ;
166166 self . rpcclient . notify ( "setqflist" , parms) ?;
@@ -169,7 +169,7 @@ impl Vim {
169169
170170 pub fn getqfid ( & self , title : & str ) -> Fallible < i32 > {
171171 info ! ( "Begin getqfid" ) ;
172- self . rpcclient . call ( "LSP#GetQfListIdForTitle" , title)
172+ self . rpcclient . call ( "LSP#GetQfListIdForTitle" , title)
173173 }
174174
175175 pub fn setqflist ( & self , list : & [ QuickfixEntry ] , action : & str , title : & str ) -> Fallible < ( ) > {
0 commit comments