加个css片段
/* query语法查询结果无滚动条 */
.internal-query .search-result-container {
height: fit-content;
min-height: fit-content;
max-height: none;
}
.markdown-preview-view .internal-query .search-result-container {
height: fit-content;
min-height: fit-content;
max-height: none;
}
觉得高亮碍眼的,再加个css片段
/* 取消搜索关键词的高亮 */
.search-result-file-matched-text {
color: inherit;
background-color: inherit;
}
如想要完整显示关键词所在段落,
使用/^(.*)关键词(.*)\n/
进行搜索。
以上是我四处搜寻总结出来的,不是我的原创。
如果屏幕前的你是原创,在此表示万分感谢!