Port to gpui2
This commit is contained in:
parent
14993e0876
commit
f052329a6b
7 changed files with 70 additions and 20 deletions
|
@ -200,8 +200,12 @@ impl CachedLspAdapter {
|
||||||
self.adapter.code_action_kinds()
|
self.adapter.code_action_kinds()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn workspace_configuration(&self, cx: &mut AppContext) -> BoxFuture<'static, Value> {
|
pub fn workspace_configuration(
|
||||||
self.adapter.workspace_configuration(cx)
|
&self,
|
||||||
|
workspace_root: &Path,
|
||||||
|
cx: &mut AppContext,
|
||||||
|
) -> BoxFuture<'static, Value> {
|
||||||
|
self.adapter.workspace_configuration(workspace_root, cx)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn process_diagnostics(&self, params: &mut lsp::PublishDiagnosticsParams) {
|
pub fn process_diagnostics(&self, params: &mut lsp::PublishDiagnosticsParams) {
|
||||||
|
@ -315,7 +319,7 @@ pub trait LspAdapter: 'static + Send + Sync {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
fn workspace_configuration(&self, _: &mut AppContext) -> BoxFuture<'static, Value> {
|
fn workspace_configuration(&self, _: &Path, _: &mut AppContext) -> BoxFuture<'static, Value> {
|
||||||
futures::future::ready(serde_json::json!({})).boxed()
|
futures::future::ready(serde_json::json!({})).boxed()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -434,8 +434,8 @@ impl LanguageServer {
|
||||||
let root_uri = Url::from_file_path(&self.root_path).unwrap();
|
let root_uri = Url::from_file_path(&self.root_path).unwrap();
|
||||||
#[allow(deprecated)]
|
#[allow(deprecated)]
|
||||||
let params = InitializeParams {
|
let params = InitializeParams {
|
||||||
process_id: Default::default(),
|
process_id: None,
|
||||||
root_path: Default::default(),
|
root_path: None,
|
||||||
root_uri: Some(root_uri.clone()),
|
root_uri: Some(root_uri.clone()),
|
||||||
initialization_options: options,
|
initialization_options: options,
|
||||||
capabilities: ClientCapabilities {
|
capabilities: ClientCapabilities {
|
||||||
|
@ -456,12 +456,15 @@ impl LanguageServer {
|
||||||
inlay_hint: Some(InlayHintWorkspaceClientCapabilities {
|
inlay_hint: Some(InlayHintWorkspaceClientCapabilities {
|
||||||
refresh_support: Some(true),
|
refresh_support: Some(true),
|
||||||
}),
|
}),
|
||||||
|
diagnostic: Some(DiagnosticWorkspaceClientCapabilities {
|
||||||
|
refresh_support: None,
|
||||||
|
}),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
}),
|
||||||
text_document: Some(TextDocumentClientCapabilities {
|
text_document: Some(TextDocumentClientCapabilities {
|
||||||
definition: Some(GotoCapability {
|
definition: Some(GotoCapability {
|
||||||
link_support: Some(true),
|
link_support: Some(true),
|
||||||
..Default::default()
|
dynamic_registration: None,
|
||||||
}),
|
}),
|
||||||
code_action: Some(CodeActionClientCapabilities {
|
code_action: Some(CodeActionClientCapabilities {
|
||||||
code_action_literal_support: Some(CodeActionLiteralSupport {
|
code_action_literal_support: Some(CodeActionLiteralSupport {
|
||||||
|
@ -503,7 +506,7 @@ impl LanguageServer {
|
||||||
}),
|
}),
|
||||||
hover: Some(HoverClientCapabilities {
|
hover: Some(HoverClientCapabilities {
|
||||||
content_format: Some(vec![MarkupKind::Markdown]),
|
content_format: Some(vec![MarkupKind::Markdown]),
|
||||||
..Default::default()
|
dynamic_registration: None,
|
||||||
}),
|
}),
|
||||||
inlay_hint: Some(InlayHintClientCapabilities {
|
inlay_hint: Some(InlayHintClientCapabilities {
|
||||||
resolve_support: Some(InlayHintResolveClientCapabilities {
|
resolve_support: Some(InlayHintResolveClientCapabilities {
|
||||||
|
@ -517,6 +520,20 @@ impl LanguageServer {
|
||||||
}),
|
}),
|
||||||
dynamic_registration: Some(false),
|
dynamic_registration: Some(false),
|
||||||
}),
|
}),
|
||||||
|
publish_diagnostics: Some(PublishDiagnosticsClientCapabilities {
|
||||||
|
related_information: Some(true),
|
||||||
|
..Default::default()
|
||||||
|
}),
|
||||||
|
formatting: Some(DynamicRegistrationClientCapabilities {
|
||||||
|
dynamic_registration: None,
|
||||||
|
}),
|
||||||
|
on_type_formatting: Some(DynamicRegistrationClientCapabilities {
|
||||||
|
dynamic_registration: None,
|
||||||
|
}),
|
||||||
|
diagnostic: Some(DiagnosticClientCapabilities {
|
||||||
|
related_document_support: Some(true),
|
||||||
|
dynamic_registration: None,
|
||||||
|
}),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
}),
|
||||||
experimental: Some(json!({
|
experimental: Some(json!({
|
||||||
|
@ -526,15 +543,15 @@ impl LanguageServer {
|
||||||
work_done_progress: Some(true),
|
work_done_progress: Some(true),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}),
|
}),
|
||||||
..Default::default()
|
general: None,
|
||||||
},
|
},
|
||||||
trace: Default::default(),
|
trace: None,
|
||||||
workspace_folders: Some(vec![WorkspaceFolder {
|
workspace_folders: Some(vec![WorkspaceFolder {
|
||||||
uri: root_uri,
|
uri: root_uri,
|
||||||
name: Default::default(),
|
name: Default::default(),
|
||||||
}]),
|
}]),
|
||||||
client_info: Default::default(),
|
client_info: None,
|
||||||
locale: Default::default(),
|
locale: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
let response = self.request::<request::Initialize>(params).await?;
|
let response = self.request::<request::Initialize>(params).await?;
|
||||||
|
|
|
@ -2677,8 +2677,9 @@ impl Project {
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
for (adapter, server) in servers {
|
for (adapter, server) in servers {
|
||||||
let workspace_config =
|
let workspace_config = cx
|
||||||
cx.update(|cx| adapter.workspace_configuration(cx))?.await;
|
.update(|cx| adapter.workspace_configuration(server.root_path(), cx))?
|
||||||
|
.await;
|
||||||
server
|
server
|
||||||
.notify::<lsp::notification::DidChangeConfiguration>(
|
.notify::<lsp::notification::DidChangeConfiguration>(
|
||||||
lsp::DidChangeConfigurationParams {
|
lsp::DidChangeConfigurationParams {
|
||||||
|
@ -2790,7 +2791,7 @@ impl Project {
|
||||||
stderr_capture.clone(),
|
stderr_capture.clone(),
|
||||||
language.clone(),
|
language.clone(),
|
||||||
adapter.clone(),
|
adapter.clone(),
|
||||||
worktree_path,
|
Arc::clone(&worktree_path),
|
||||||
ProjectLspAdapterDelegate::new(self, cx),
|
ProjectLspAdapterDelegate::new(self, cx),
|
||||||
cx,
|
cx,
|
||||||
) {
|
) {
|
||||||
|
@ -2822,6 +2823,7 @@ impl Project {
|
||||||
cx.spawn(move |this, mut cx| async move {
|
cx.spawn(move |this, mut cx| async move {
|
||||||
let result = Self::setup_and_insert_language_server(
|
let result = Self::setup_and_insert_language_server(
|
||||||
this.clone(),
|
this.clone(),
|
||||||
|
&worktree_path,
|
||||||
initialization_options,
|
initialization_options,
|
||||||
pending_server,
|
pending_server,
|
||||||
adapter.clone(),
|
adapter.clone(),
|
||||||
|
@ -2942,6 +2944,7 @@ impl Project {
|
||||||
|
|
||||||
async fn setup_and_insert_language_server(
|
async fn setup_and_insert_language_server(
|
||||||
this: WeakModel<Self>,
|
this: WeakModel<Self>,
|
||||||
|
worktree_path: &Path,
|
||||||
initialization_options: Option<serde_json::Value>,
|
initialization_options: Option<serde_json::Value>,
|
||||||
pending_server: PendingLanguageServer,
|
pending_server: PendingLanguageServer,
|
||||||
adapter: Arc<CachedLspAdapter>,
|
adapter: Arc<CachedLspAdapter>,
|
||||||
|
@ -2954,6 +2957,7 @@ impl Project {
|
||||||
this.clone(),
|
this.clone(),
|
||||||
initialization_options,
|
initialization_options,
|
||||||
pending_server,
|
pending_server,
|
||||||
|
worktree_path,
|
||||||
adapter.clone(),
|
adapter.clone(),
|
||||||
server_id,
|
server_id,
|
||||||
cx,
|
cx,
|
||||||
|
@ -2983,11 +2987,14 @@ impl Project {
|
||||||
this: WeakModel<Self>,
|
this: WeakModel<Self>,
|
||||||
initialization_options: Option<serde_json::Value>,
|
initialization_options: Option<serde_json::Value>,
|
||||||
pending_server: PendingLanguageServer,
|
pending_server: PendingLanguageServer,
|
||||||
|
worktree_path: &Path,
|
||||||
adapter: Arc<CachedLspAdapter>,
|
adapter: Arc<CachedLspAdapter>,
|
||||||
server_id: LanguageServerId,
|
server_id: LanguageServerId,
|
||||||
cx: &mut AsyncAppContext,
|
cx: &mut AsyncAppContext,
|
||||||
) -> Result<Arc<LanguageServer>> {
|
) -> Result<Arc<LanguageServer>> {
|
||||||
let workspace_config = cx.update(|cx| adapter.workspace_configuration(cx))?.await;
|
let workspace_config = cx
|
||||||
|
.update(|cx| adapter.workspace_configuration(worktree_path, cx))?
|
||||||
|
.await;
|
||||||
let language_server = pending_server.task.await?;
|
let language_server = pending_server.task.await?;
|
||||||
|
|
||||||
language_server
|
language_server
|
||||||
|
@ -3016,11 +3023,14 @@ impl Project {
|
||||||
language_server
|
language_server
|
||||||
.on_request::<lsp::request::WorkspaceConfiguration, _, _>({
|
.on_request::<lsp::request::WorkspaceConfiguration, _, _>({
|
||||||
let adapter = adapter.clone();
|
let adapter = adapter.clone();
|
||||||
|
let worktree_path = worktree_path.to_path_buf();
|
||||||
move |params, cx| {
|
move |params, cx| {
|
||||||
let adapter = adapter.clone();
|
let adapter = adapter.clone();
|
||||||
|
let worktree_path = worktree_path.clone();
|
||||||
async move {
|
async move {
|
||||||
let workspace_config =
|
let workspace_config = cx
|
||||||
cx.update(|cx| adapter.workspace_configuration(cx))?.await;
|
.update(|cx| adapter.workspace_configuration(&worktree_path, cx))?
|
||||||
|
.await;
|
||||||
Ok(params
|
Ok(params
|
||||||
.items
|
.items
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
|
|
@ -105,6 +105,7 @@ impl LspAdapter for JsonLspAdapter {
|
||||||
|
|
||||||
fn workspace_configuration(
|
fn workspace_configuration(
|
||||||
&self,
|
&self,
|
||||||
|
_workspace_root: &Path,
|
||||||
cx: &mut AppContext,
|
cx: &mut AppContext,
|
||||||
) -> BoxFuture<'static, serde_json::Value> {
|
) -> BoxFuture<'static, serde_json::Value> {
|
||||||
let action_names = cx.all_action_names();
|
let action_names = cx.all_action_names();
|
||||||
|
|
|
@ -107,7 +107,11 @@ impl LspAdapter for TailwindLspAdapter {
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn workspace_configuration(&self, _: &mut AppContext) -> BoxFuture<'static, Value> {
|
fn workspace_configuration(
|
||||||
|
&self,
|
||||||
|
_workspace_root: &Path,
|
||||||
|
_: &mut AppContext,
|
||||||
|
) -> BoxFuture<'static, Value> {
|
||||||
future::ready(json!({
|
future::ready(json!({
|
||||||
"tailwindCSS": {
|
"tailwindCSS": {
|
||||||
"emmetCompletions": true,
|
"emmetCompletions": true,
|
||||||
|
|
|
@ -212,13 +212,23 @@ impl EsLintLspAdapter {
|
||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl LspAdapter for EsLintLspAdapter {
|
impl LspAdapter for EsLintLspAdapter {
|
||||||
fn workspace_configuration(&self, _: &mut AppContext) -> BoxFuture<'static, Value> {
|
fn workspace_configuration(
|
||||||
|
&self,
|
||||||
|
workspace_root: &Path,
|
||||||
|
_: &mut AppContext,
|
||||||
|
) -> BoxFuture<'static, Value> {
|
||||||
future::ready(json!({
|
future::ready(json!({
|
||||||
"": {
|
"": {
|
||||||
"validate": "on",
|
"validate": "on",
|
||||||
"rulesCustomizations": [],
|
"rulesCustomizations": [],
|
||||||
"run": "onType",
|
"run": "onType",
|
||||||
"nodePath": null,
|
"nodePath": null,
|
||||||
|
"workingDirectory": {"mode": "auto"},
|
||||||
|
"workspaceFolder": {
|
||||||
|
"uri": workspace_root,
|
||||||
|
"name": workspace_root.file_name()
|
||||||
|
.unwrap_or_else(|| workspace_root.as_os_str()),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
.boxed()
|
.boxed()
|
||||||
|
|
|
@ -93,7 +93,11 @@ impl LspAdapter for YamlLspAdapter {
|
||||||
) -> Option<LanguageServerBinary> {
|
) -> Option<LanguageServerBinary> {
|
||||||
get_cached_server_binary(container_dir, &*self.node).await
|
get_cached_server_binary(container_dir, &*self.node).await
|
||||||
}
|
}
|
||||||
fn workspace_configuration(&self, cx: &mut AppContext) -> BoxFuture<'static, Value> {
|
fn workspace_configuration(
|
||||||
|
&self,
|
||||||
|
_workspace_root: &Path,
|
||||||
|
cx: &mut AppContext,
|
||||||
|
) -> BoxFuture<'static, Value> {
|
||||||
let tab_size = all_language_settings(None, cx)
|
let tab_size = all_language_settings(None, cx)
|
||||||
.language(Some("YAML"))
|
.language(Some("YAML"))
|
||||||
.tab_size;
|
.tab_size;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue