mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-03 17:58:17 +00:00
fix: missing typst-preview
This commit is contained in:
parent
d46a135882
commit
28fc0fc036
2 changed files with 44 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
use std::{collections::HashSet, os::windows::fs::FileTypeExt};
|
||||
use std::collections::HashSet;
|
||||
|
||||
use log::{debug, warn};
|
||||
use lsp_types::TextEdit;
|
||||
|
@ -173,7 +173,7 @@ fn search_in_workspace(
|
|||
let Ok(de) = path else {
|
||||
continue;
|
||||
};
|
||||
if !de.file_type().is_file() && !de.file_type().is_symlink_file() {
|
||||
if !de.file_type().is_file() {
|
||||
continue;
|
||||
}
|
||||
if !de
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue