forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(lsp): pass client_info on initialization (helix-editor#4904)
Pass client name ('helix') and client version (version / git hash) to LSP server on initialization.
- Loading branch information
Showing
7 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,26 @@ | ||
use std::borrow::Cow; | ||
use std::process::Command; | ||
|
||
const VERSION: &str = include_str!("../VERSION"); | ||
|
||
fn main() { | ||
let git_hash = Command::new("git") | ||
.args(["rev-parse", "HEAD"]) | ||
.output() | ||
.ok() | ||
.filter(|output| output.status.success()) | ||
.and_then(|x| String::from_utf8(x.stdout).ok()); | ||
|
||
let version: Cow<_> = match git_hash { | ||
Some(git_hash) => format!("{} ({})", VERSION, &git_hash[..8]).into(), | ||
None => VERSION.into(), | ||
}; | ||
|
||
println!( | ||
"cargo:rustc-env=BUILD_TARGET={}", | ||
std::env::var("TARGET").unwrap() | ||
); | ||
|
||
println!("cargo:rerun-if-changed=../VERSION"); | ||
println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", version); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,9 @@ | ||
use helix_loader::grammar::{build_grammars, fetch_grammars}; | ||
use std::borrow::Cow; | ||
use std::process::Command; | ||
|
||
const VERSION: &str = include_str!("../VERSION"); | ||
|
||
fn main() { | ||
let git_hash = Command::new("git") | ||
.args(["rev-parse", "HEAD"]) | ||
.output() | ||
.ok() | ||
.filter(|output| output.status.success()) | ||
.and_then(|x| String::from_utf8(x.stdout).ok()); | ||
|
||
let version: Cow<_> = match git_hash { | ||
Some(git_hash) => format!("{} ({})", VERSION, &git_hash[..8]).into(), | ||
None => VERSION.into(), | ||
}; | ||
|
||
if std::env::var("HELIX_DISABLE_AUTO_GRAMMAR_BUILD").is_err() { | ||
fetch_grammars().expect("Failed to fetch tree-sitter grammars"); | ||
build_grammars(Some(std::env::var("TARGET").unwrap())) | ||
.expect("Failed to compile tree-sitter grammars"); | ||
} | ||
|
||
println!("cargo:rerun-if-changed=../runtime/grammars/"); | ||
println!("cargo:rerun-if-changed=../VERSION"); | ||
|
||
println!("cargo:rustc-env=VERSION_AND_GIT_HASH={}", version); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters