Rename `installation.rs` -> `github.rs` now that is all it concerns

Julia created

Change summary

crates/zed/src/languages.rs        | 2 +-
crates/zed/src/languages/c.rs      | 2 +-
crates/zed/src/languages/elixir.rs | 2 +-
crates/zed/src/languages/github.rs | 0 
crates/zed/src/languages/go.rs     | 2 +-
crates/zed/src/languages/lua.rs    | 2 +-
crates/zed/src/languages/rust.rs   | 2 +-
7 files changed, 6 insertions(+), 6 deletions(-)

Detailed changes

crates/zed/src/languages.rs 🔗

@@ -9,9 +9,9 @@ use theme::ThemeRegistry;
 
 mod c;
 mod elixir;
+mod github;
 mod go;
 mod html;
-mod installation;
 mod json;
 mod language_plugin;
 mod lua;

crates/zed/src/languages/c.rs 🔗

@@ -1,4 +1,4 @@
-use super::installation::{latest_github_release, GitHubLspBinaryVersion};
+use super::github::{latest_github_release, GitHubLspBinaryVersion};
 use anyhow::{anyhow, Context, Result};
 use async_trait::async_trait;
 use client::http::HttpClient;

crates/zed/src/languages/elixir.rs 🔗

@@ -1,4 +1,4 @@
-use super::installation::{latest_github_release, GitHubLspBinaryVersion};
+use super::github::{latest_github_release, GitHubLspBinaryVersion};
 use anyhow::{anyhow, Context, Result};
 use async_trait::async_trait;
 use client::http::HttpClient;

crates/zed/src/languages/go.rs 🔗

@@ -1,4 +1,4 @@
-use super::installation::latest_github_release;
+use super::github::latest_github_release;
 use anyhow::{anyhow, Result};
 use async_trait::async_trait;
 use client::http::HttpClient;

crates/zed/src/languages/lua.rs 🔗

@@ -10,7 +10,7 @@ use language::{LanguageServerBinary, LanguageServerName};
 use smol::fs;
 use util::{async_iife, ResultExt};
 
-use super::installation::{latest_github_release, GitHubLspBinaryVersion};
+use super::github::{latest_github_release, GitHubLspBinaryVersion};
 
 #[derive(Copy, Clone)]
 pub struct LuaLspAdapter;

crates/zed/src/languages/rust.rs 🔗

@@ -1,4 +1,4 @@
-use super::installation::{latest_github_release, GitHubLspBinaryVersion};
+use super::github::{latest_github_release, GitHubLspBinaryVersion};
 use anyhow::{anyhow, Result};
 use async_compression::futures::bufread::GzipDecoder;
 use async_trait::async_trait;