Skip to content

Commit f049f5f

Browse files
committed
internal: Make COMPLETION_MARKER more explicitly r-a
If a user ever sees the completion marker, it's confusing to see text about IntelliJ. Use a string that's more explicitly about completion for rust-analyzer.
1 parent f75aebe commit f049f5f

File tree

1 file changed

+1
-1
lines changed
  • src/tools/rust-analyzer/crates/ide-completion/src

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/crates/ide-completion/src/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use crate::{
2626
CompletionConfig,
2727
};
2828

29-
const COMPLETION_MARKER: &str = "intellijRulezz";
29+
const COMPLETION_MARKER: &str = "raCompletionMarker";
3030

3131
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
3232
pub(crate) enum PatternRefutability {

0 commit comments

Comments
 (0)