Skip to content

Commit d9d0d22

Browse files
committed
enable assist actions
1 parent 601cb10 commit d9d0d22

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/main.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -352,11 +352,8 @@ impl Server {
352352
Some(v) => v,
353353
None => continue,
354354
};
355-
#[cfg(debug_assertions)]
356-
{
357-
if caps.code_action_provider.is_some() {
358-
body.push_str("[assist] ");
359-
}
355+
if caps.code_action_provider.is_some() {
356+
body.push_str("[assist] ");
360357
}
361358
if caps.completion_provider.is_some() {
362359
body.push_str("[complete] ");

0 commit comments

Comments
 (0)