Skip to content

Commit 5b77dbb

Browse files
committed
Format
1 parent 8a01347 commit 5b77dbb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/rpchandler.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use super::*;
21
use super::types::OptionDeref;
2+
use super::*;
33
use crate::language_client::LanguageClient;
44
use crate::lsp::notification::Notification;
55
use crate::lsp::request::Request;
@@ -23,7 +23,8 @@ impl LanguageClient {
2323
.output(method_call.id.to_int()?, result)?;
2424
}
2525
Call::Notification(lang_id, notification) => {
26-
let result = self.handle_notification(OptionDeref::as_deref(&lang_id), &notification);
26+
let result =
27+
self.handle_notification(OptionDeref::as_deref(&lang_id), &notification);
2728
if let Err(ref err) = result {
2829
if err.downcast_ref::<LCError>().is_none() {
2930
error!(

src/vim.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use super::*;
21
use super::types::OptionDeref;
2+
use super::*;
33
use crate::rpcclient::RpcClient;
44
use crate::sign::Sign;
55
use crate::viewport::Viewport;

0 commit comments

Comments
 (0)