Skip to content

Commit 2b1350c

Browse files
committed
fmt.
1 parent 6b8d8b2 commit 2b1350c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/language_server_protocol.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1840,10 +1840,12 @@ impl LanguageClient {
18401840
let msg_actions = msg_params.actions.unwrap_or_default();
18411841
let mut options = Vec::with_capacity(msg_actions.len() + 1);
18421842
options.push(msg_params.message);
1843-
options.extend(msg_actions
1844-
.iter()
1845-
.enumerate()
1846-
.map(|(i, item)| format!("{}) {}", i + 1, item.title)));
1843+
options.extend(
1844+
msg_actions
1845+
.iter()
1846+
.enumerate()
1847+
.map(|(i, item)| format!("{}) {}", i + 1, item.title)),
1848+
);
18471849

18481850
let mut v = Value::Null;
18491851
let index: Option<usize> = self.vim()?.rpcclient.call("s:inputlist", options)?;

0 commit comments

Comments
 (0)