mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
Simplify LSP formatting, feature gate lsp in helix-view
This commit is contained in:
parent
dcd1e9eaa3
commit
8694d60ab3
@ -199,22 +199,6 @@ pub fn generate_transaction_from_edits(
|
||||
}),
|
||||
)
|
||||
}
|
||||
|
||||
/// The result of asking the language server to format the document. This can be turned into a
|
||||
/// `Transaction`, but the advantage of not doing that straight away is that this one is
|
||||
/// `Send` and `Sync`.
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct LspFormatting {
|
||||
pub doc: Rope,
|
||||
pub edits: Vec<lsp::TextEdit>,
|
||||
pub offset_encoding: OffsetEncoding,
|
||||
}
|
||||
|
||||
impl From<LspFormatting> for Transaction {
|
||||
fn from(fmt: LspFormatting) -> Transaction {
|
||||
generate_transaction_from_edits(&fmt.doc, fmt.edits, fmt.offset_encoding)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Clone)]
|
||||
|
@ -2289,7 +2289,7 @@ async fn make_format_callback(
|
||||
doc_id: DocumentId,
|
||||
doc_version: i32,
|
||||
modified: Modified,
|
||||
format: impl Future<Output = helix_lsp::util::LspFormatting> + Send + 'static,
|
||||
format: impl Future<Output = Transaction> + Send + 'static,
|
||||
) -> anyhow::Result<job::Callback> {
|
||||
let format = format.await;
|
||||
let call: job::Callback = Box::new(move |editor, _compositor| {
|
||||
|
@ -10,7 +10,8 @@ repository = "https://github.com/helix-editor/helix"
|
||||
homepage = "https://helix-editor.com"
|
||||
|
||||
[features]
|
||||
# default = ["dap"]
|
||||
default = ["dap", "lsp"]
|
||||
lsp = ["helix-lsp"]
|
||||
dap = ["helix-dap", "tokio-stream"]
|
||||
term = ["crossterm"]
|
||||
|
||||
@ -18,7 +19,7 @@ term = ["crossterm"]
|
||||
bitflags = "1.3"
|
||||
anyhow = "1"
|
||||
helix-core = { version = "0.6", path = "../helix-core" }
|
||||
helix-lsp = { version = "0.6", path = "../helix-lsp" }
|
||||
helix-lsp = { version = "0.6", path = "../helix-lsp", optional = true }
|
||||
helix-dap = { version = "0.6", path = "../helix-dap", optional = true }
|
||||
tokio-stream = { version = "0.1", optional = true }
|
||||
|
||||
@ -30,7 +31,7 @@ url = "2"
|
||||
|
||||
arc-swap = { version = "1.5.0" }
|
||||
|
||||
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
||||
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
||||
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
||||
|
||||
slotmap = "1"
|
||||
|
@ -19,7 +19,9 @@
|
||||
ChangeSet, Diagnostic, LineEnding, Rope, RopeBuilder, Selection, State, Syntax, Transaction,
|
||||
DEFAULT_LINE_ENDING,
|
||||
};
|
||||
use helix_lsp::util::LspFormatting;
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
use helix_lsp::lsp;
|
||||
|
||||
use crate::{DocumentId, Editor, ViewId};
|
||||
|
||||
@ -119,6 +121,7 @@ pub struct Document {
|
||||
pub(crate) modified_since_accessed: bool,
|
||||
|
||||
diagnostics: Vec<Diagnostic>,
|
||||
#[cfg(feature = "lsp")]
|
||||
language_server: Option<Arc<helix_lsp::Client>>,
|
||||
}
|
||||
|
||||
@ -142,7 +145,6 @@ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
.field("version", &self.version)
|
||||
.field("modified_since_accessed", &self.modified_since_accessed)
|
||||
.field("diagnostics", &self.diagnostics)
|
||||
// .field("language_server", &self.language_server)
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
@ -330,7 +332,6 @@ fn take_with<T, F>(mut_ref: &mut T, f: F)
|
||||
*mut_ref = f(mem::take(mut_ref));
|
||||
}
|
||||
|
||||
use helix_lsp::lsp;
|
||||
use url::Url;
|
||||
|
||||
impl Document {
|
||||
@ -359,6 +360,7 @@ pub fn from(text: Rope, encoding: Option<&'static encoding::Encoding>) -> Self {
|
||||
savepoint: None,
|
||||
last_saved_revision: 0,
|
||||
modified_since_accessed: false,
|
||||
#[cfg(feature = "lsp")]
|
||||
language_server: None,
|
||||
}
|
||||
}
|
||||
@ -394,9 +396,10 @@ pub fn open(
|
||||
Ok(doc)
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// The same as [`format`], but only returns formatting changes if auto-formatting
|
||||
/// is configured.
|
||||
pub fn auto_format(&self) -> Option<impl Future<Output = LspFormatting> + 'static> {
|
||||
pub fn auto_format(&self) -> Option<impl Future<Output = Transaction> + 'static> {
|
||||
if self.language_config()?.auto_format {
|
||||
self.format()
|
||||
} else {
|
||||
@ -404,9 +407,12 @@ pub fn auto_format(&self) -> Option<impl Future<Output = LspFormatting> + 'stati
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// If supported, returns the changes that should be applied to this document in order
|
||||
/// to format it nicely.
|
||||
pub fn format(&self) -> Option<impl Future<Output = LspFormatting> + 'static> {
|
||||
pub fn format(&self) -> Option<impl Future<Output = Transaction> + 'static> {
|
||||
use helix_lsp::util::generate_transaction_from_edits;
|
||||
|
||||
let language_server = self.language_server()?;
|
||||
let text = self.text.clone();
|
||||
let offset_encoding = language_server.offset_encoding();
|
||||
@ -425,11 +431,7 @@ pub fn format(&self) -> Option<impl Future<Output = LspFormatting> + 'static> {
|
||||
log::warn!("LSP formatting failed: {}", e);
|
||||
Default::default()
|
||||
});
|
||||
LspFormatting {
|
||||
doc: text,
|
||||
edits,
|
||||
offset_encoding,
|
||||
}
|
||||
generate_transaction_from_edits(&text, edits, offset_encoding)
|
||||
};
|
||||
Some(fut)
|
||||
}
|
||||
@ -438,9 +440,10 @@ pub fn save(&mut self, force: bool) -> impl Future<Output = Result<(), anyhow::E
|
||||
self.save_impl::<futures_util::future::Ready<_>>(None, force)
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
pub fn format_and_save(
|
||||
&mut self,
|
||||
formatting: Option<impl Future<Output = LspFormatting>>,
|
||||
formatting: Option<impl Future<Output = Transaction>>,
|
||||
force: bool,
|
||||
) -> impl Future<Output = anyhow::Result<()>> {
|
||||
self.save_impl(formatting, force)
|
||||
@ -452,7 +455,7 @@ pub fn format_and_save(
|
||||
/// at its `path()`.
|
||||
///
|
||||
/// If `formatting` is present, it supplies some changes that we apply to the text before saving.
|
||||
fn save_impl<F: Future<Output = LspFormatting>>(
|
||||
fn save_impl<F: Future<Output = Transaction>>(
|
||||
&mut self,
|
||||
formatting: Option<F>,
|
||||
force: bool,
|
||||
@ -462,8 +465,10 @@ fn save_impl<F: Future<Output = LspFormatting>>(
|
||||
|
||||
let mut text = self.text().clone();
|
||||
let path = self.path.clone().expect("Can't save with no path set!");
|
||||
let identifier = self.identifier();
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
let identifier = self.identifier();
|
||||
#[cfg(feature = "lsp")]
|
||||
let language_server = self.language_server.clone();
|
||||
|
||||
// mark changes up to now as saved
|
||||
@ -486,7 +491,8 @@ fn save_impl<F: Future<Output = LspFormatting>>(
|
||||
}
|
||||
|
||||
if let Some(fmt) = formatting {
|
||||
let success = Transaction::from(fmt.await).changes().apply(&mut text);
|
||||
let transaction = fmt.await;
|
||||
let success = transaction.changes().apply(&mut text);
|
||||
if !success {
|
||||
// This shouldn't happen, because the transaction changes were generated
|
||||
// from the same text we're saving.
|
||||
@ -497,6 +503,7 @@ fn save_impl<F: Future<Output = LspFormatting>>(
|
||||
let mut file = File::create(path).await?;
|
||||
to_writer(&mut file, encoding, &text).await?;
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
if let Some(language_server) = language_server {
|
||||
if !language_server.is_initialized() {
|
||||
return Ok(());
|
||||
@ -613,6 +620,7 @@ pub fn set_language2(&mut self, scope: &str, config_loader: Arc<syntax::Loader>)
|
||||
self.set_language(language_config, Some(config_loader));
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// Set the programming language for the file if you know the language but don't have the
|
||||
/// [`syntax::LanguageConfiguration`] for it.
|
||||
pub fn set_language_by_language_id(
|
||||
@ -624,6 +632,7 @@ pub fn set_language_by_language_id(
|
||||
self.set_language(language_config, Some(config_loader));
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// Set the LSP.
|
||||
pub fn set_language_server(&mut self, language_server: Option<Arc<helix_lsp::Client>>) {
|
||||
self.language_server = language_server;
|
||||
@ -692,6 +701,7 @@ fn apply_impl(&mut self, transaction: &Transaction, view_id: ViewId) -> bool {
|
||||
}
|
||||
|
||||
// emit lsp notification
|
||||
#[cfg(feature = "lsp")]
|
||||
if let Some(language_server) = self.language_server() {
|
||||
let notify = language_server.text_document_did_change(
|
||||
self.versioned_identifier(),
|
||||
@ -869,6 +879,7 @@ pub fn version(&self) -> i32 {
|
||||
self.version
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// Language server if it has been initialized.
|
||||
pub fn language_server(&self) -> Option<&helix_lsp::Client> {
|
||||
let server = self.language_server.as_deref()?;
|
||||
@ -935,15 +946,18 @@ pub fn relative_path(&self) -> Option<PathBuf> {
|
||||
|
||||
// -- LSP methods
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
#[inline]
|
||||
pub fn identifier(&self) -> lsp::TextDocumentIdentifier {
|
||||
lsp::TextDocumentIdentifier::new(self.url().unwrap())
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
pub fn versioned_identifier(&self) -> lsp::VersionedTextDocumentIdentifier {
|
||||
lsp::VersionedTextDocumentIdentifier::new(self.url().unwrap(), self.version)
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
pub fn position(
|
||||
&self,
|
||||
view_id: ViewId,
|
||||
@ -1003,6 +1017,7 @@ fn default() -> Self {
|
||||
mod test {
|
||||
use super::*;
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
#[test]
|
||||
fn changeset_to_changes_ignore_line_endings() {
|
||||
use helix_lsp::{lsp, Client, OffsetEncoding};
|
||||
@ -1037,6 +1052,7 @@ fn changeset_to_changes_ignore_line_endings() {
|
||||
);
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
#[test]
|
||||
fn changeset_to_changes() {
|
||||
use helix_lsp::{lsp, Client, OffsetEncoding};
|
||||
|
@ -9,8 +9,6 @@
|
||||
Document, DocumentId, View, ViewId,
|
||||
};
|
||||
|
||||
use futures_util::future;
|
||||
|
||||
use std::{
|
||||
borrow::Cow,
|
||||
collections::{BTreeMap, HashMap},
|
||||
@ -37,6 +35,9 @@
|
||||
};
|
||||
use helix_core::{Position, Selection};
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
use futures_util::future;
|
||||
|
||||
#[cfg(feature = "dap")]
|
||||
use futures_util::stream::select_all::SelectAll;
|
||||
#[cfg(feature = "dap")]
|
||||
@ -436,6 +437,7 @@ pub struct Editor {
|
||||
pub registers: Registers,
|
||||
pub macro_recording: Option<(char, Vec<KeyEvent>)>,
|
||||
pub theme: Theme,
|
||||
#[cfg(feature = "lsp")]
|
||||
pub language_servers: helix_lsp::Registry,
|
||||
|
||||
#[cfg(feature = "dap")]
|
||||
@ -495,7 +497,6 @@ pub fn new(
|
||||
syn_loader: Arc<syntax::Loader>,
|
||||
config: Box<dyn DynAccess<Config>>,
|
||||
) -> Self {
|
||||
let language_servers = helix_lsp::Registry::new();
|
||||
let conf = config.load();
|
||||
let auto_pairs = (&conf.auto_pairs).into();
|
||||
|
||||
@ -510,7 +511,8 @@ pub fn new(
|
||||
selected_register: None,
|
||||
macro_recording: None,
|
||||
theme: theme_loader.default(),
|
||||
language_servers,
|
||||
#[cfg(feature = "lsp")]
|
||||
language_servers: helix_lsp::Registry::new(),
|
||||
#[cfg(feature = "dap")]
|
||||
debugger: None,
|
||||
#[cfg(feature = "dap")]
|
||||
@ -581,12 +583,14 @@ pub fn set_theme(&mut self, theme: Theme) {
|
||||
self._refresh();
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// Refreshes the language server for a given document
|
||||
pub fn refresh_language_server(&mut self, doc_id: DocumentId) -> Option<()> {
|
||||
let doc = self.documents.get_mut(&doc_id)?;
|
||||
Self::launch_language_server(&mut self.language_servers, doc)
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// Launch a language server for a given document
|
||||
fn launch_language_server(ls: &mut helix_lsp::Registry, doc: &mut Document) -> Option<()> {
|
||||
// if doc doesn't have a URL it's a scratch buffer, ignore it
|
||||
@ -624,7 +628,7 @@ fn launch_language_server(ls: &mut helix_lsp::Registry, doc: &mut Document) -> O
|
||||
doc.set_language_server(Some(language_server));
|
||||
}
|
||||
}
|
||||
Some(())
|
||||
Some(()) // TODO: what's the deal with the return type
|
||||
}
|
||||
|
||||
fn _refresh(&mut self) {
|
||||
@ -768,6 +772,7 @@ pub fn open(&mut self, path: PathBuf, action: Action) -> Result<DocumentId, Erro
|
||||
} else {
|
||||
let mut doc = Document::open(&path, None, Some(self.syn_loader.clone()))?;
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
let _ = Self::launch_language_server(&mut self.language_servers, &mut doc);
|
||||
|
||||
self.new_document(doc)
|
||||
@ -805,6 +810,7 @@ pub fn close_document(&mut self, doc_id: DocumentId, force: bool) -> anyhow::Res
|
||||
);
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
if let Some(language_server) = doc.language_server() {
|
||||
tokio::spawn(language_server.text_document_did_close(doc.identifier()));
|
||||
}
|
||||
@ -954,6 +960,7 @@ pub fn cursor(&self) -> (Option<Position>, CursorKind) {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "lsp")]
|
||||
/// Closes language servers with timeout. The default timeout is 500 ms, use
|
||||
/// `timeout` parameter to override this.
|
||||
pub async fn close_language_servers(
|
||||
|
Loading…
Reference in New Issue
Block a user