mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	lsp: Disable capabilities not currently supported by language client handlers (#13638)
Several language servers are incorrectly invoking handlers which are not yet implemented in core.
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							329547bf70
						
					
				
				
					commit
					28b7574c94
				
			@@ -730,7 +730,15 @@ function protocol.make_client_capabilities()
 | 
			
		||||
    experimental = nil;
 | 
			
		||||
    window = {
 | 
			
		||||
      workDoneProgress = true;
 | 
			
		||||
    }
 | 
			
		||||
      showMessage = {
 | 
			
		||||
        messageActionItem = {
 | 
			
		||||
          additionalPropertiesSupport = false;
 | 
			
		||||
        };
 | 
			
		||||
      };
 | 
			
		||||
      showDocument = {
 | 
			
		||||
        support = false;
 | 
			
		||||
      };
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user