Port new workspace logic to gpui2, uncomment most of the workspace2 tests
This commit is contained in:
parent
616bda85e9
commit
d352a63d9d
9 changed files with 2684 additions and 2267 deletions
|
@ -14,14 +14,8 @@ use std::{sync::Arc, time::Duration};
|
|||
const MENTIONS_DEBOUNCE_INTERVAL: Duration = Duration::from_millis(50);
|
||||
|
||||
lazy_static! {
|
||||
static ref MENTIONS_SEARCH: SearchQuery = SearchQuery::regex(
|
||||
"@[-_\\w]+",
|
||||
false,
|
||||
false,
|
||||
Default::default(),
|
||||
Default::default()
|
||||
)
|
||||
.unwrap();
|
||||
static ref MENTIONS_SEARCH: SearchQuery =
|
||||
SearchQuery::regex("@[-_\\w]+", false, false, false, Vec::new(), Vec::new()).unwrap();
|
||||
}
|
||||
|
||||
pub struct MessageEditor {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue