Skip to content

Commit

Permalink
json: Register tasks on Rust side and not via tasks.json (zed-industr…
Browse files Browse the repository at this point in the history
…ies#12345)

/cc @RemcoSmitsDev new task indicators weren't showing for me in JSON
files.
`tasks.json` of native grammars is not being read by anything by
default, so we tend to register tasks as Rust structs, foregoing the
deserialization step. This doesn't apply to tasks registered in
extensions, which have to have tasks.json.

Release Notes:

- N/A
  • Loading branch information
osiewicz authored May 27, 2024
1 parent e19339b commit 345361c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 15 deletions.
21 changes: 21 additions & 0 deletions crates/languages/src/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use gpui::{AppContext, AsyncAppContext};
use language::{LanguageRegistry, LanguageServerName, LspAdapter, LspAdapterDelegate};
use lsp::LanguageServerBinary;
use node_runtime::NodeRuntime;
use project::ContextProviderWithTasks;
use serde_json::{json, Value};
use settings::{KeymapFile, SettingsJsonSchemaParams, SettingsStore};
use smol::fs;
Expand All @@ -16,10 +17,30 @@ use std::{
path::{Path, PathBuf},
sync::{Arc, OnceLock},
};
use task::{TaskTemplate, TaskTemplates, VariableName};
use util::{maybe, paths, ResultExt};

const SERVER_PATH: &str = "node_modules/vscode-json-languageserver/bin/vscode-json-languageserver";

pub(super) fn json_task_context() -> ContextProviderWithTasks {
ContextProviderWithTasks::new(TaskTemplates(vec![
TaskTemplate {
label: "package script $ZED_CUSTOM_script".to_owned(),
command: "npm run".to_owned(),
args: vec![VariableName::Custom("script".into()).template_value()],
tags: vec!["package-script".into()],
..TaskTemplate::default()
},
TaskTemplate {
label: "composer script $ZED_CUSTOM_script".to_owned(),
command: "composer".to_owned(),
args: vec![VariableName::Custom("script".into()).template_value()],
tags: vec!["composer-script".into()],
..TaskTemplate::default()
},
]))
}

fn server_binary_arguments(server_path: &Path) -> Vec<OsString> {
vec![server_path.into(), "--stdio".into()]
}
Expand Down
14 changes: 0 additions & 14 deletions crates/languages/src/json/tasks.json

This file was deleted.

4 changes: 3 additions & 1 deletion crates/languages/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use anyhow::Context;
use gpui::{AppContext, UpdateGlobal};
use json::json_task_context;
pub use language::*;
use node_runtime::NodeRuntime;
use rust_embed::RustEmbed;
Expand Down Expand Up @@ -119,7 +120,8 @@ pub fn init(
vec![Arc::new(json::JsonLspAdapter::new(
node_runtime.clone(),
languages.clone(),
))]
))],
json_task_context()
);
language!("markdown");
language!(
Expand Down

0 comments on commit 345361c

Please sign in to comment.