File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -11626,6 +11626,10 @@ declare module 'coc.nvim' {
11626
11626
filter ?( document : { uri : string , languageId : string } , mode : 'onType' | 'onSave' ) : boolean
11627
11627
}
11628
11628
11629
+ export interface URIConverter {
11630
+ ( value : Uri ) : string
11631
+ }
11632
+
11629
11633
export interface LanguageClientOptions {
11630
11634
ignoredRootPaths ?: string [ ]
11631
11635
disableSnippetCompletion ?: boolean
@@ -11643,6 +11647,10 @@ declare module 'coc.nvim' {
11643
11647
* to 'utf8' if omitted.
11644
11648
*/
11645
11649
stdioEncoding ?: string
11650
+ // converter used to decode uri.
11651
+ uriConverter ?: {
11652
+ code2Protocol : URIConverter
11653
+ }
11646
11654
initializationOptions ?: any | ( ( ) => any )
11647
11655
initializationFailedHandler ?: InitializationFailedHandler
11648
11656
progressOnInitialization ?: boolean
You can’t perform that action at this time.
0 commit comments