first commit
This commit is contained in:
+59
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"global": {
|
||||
"traditionalChineseSupport": false,
|
||||
"doublePinyin": "微软双拼",
|
||||
"fuzzyPinyin": false,
|
||||
"fuzzyPinyinSetting": [],
|
||||
"closeWithBackspace": false,
|
||||
"autoCaseSensitivity": true
|
||||
},
|
||||
"file": {
|
||||
"showAttachments": false,
|
||||
"showAllFileTypes": false,
|
||||
"showUnresolvedLink": false,
|
||||
"quicklySelectHistoryFiles": false,
|
||||
"quicklySelectHistoryFilesHint": "asdfjklgh",
|
||||
"attachmentExtensions": [
|
||||
"bmp",
|
||||
"png",
|
||||
"jpg",
|
||||
"jpeg",
|
||||
"gif",
|
||||
"svg",
|
||||
"webp",
|
||||
"mp3",
|
||||
"wav",
|
||||
"m4a",
|
||||
"3gp",
|
||||
"flac",
|
||||
"ogg",
|
||||
"oga",
|
||||
"opus",
|
||||
"mp4",
|
||||
"webm",
|
||||
"ogv",
|
||||
"mov",
|
||||
"mkv",
|
||||
"pdf"
|
||||
],
|
||||
"usePathToSearch": false,
|
||||
"useFileEditorSuggest": true,
|
||||
"showTags": false,
|
||||
"searchWithTag": true,
|
||||
"keyEnter": "打开",
|
||||
"keyCtrlEnter": "打开到新标签页",
|
||||
"keyAltEnter": "打开到其他面板",
|
||||
"keyCtrlAltEnter": "打开到新面板"
|
||||
},
|
||||
"heading": {
|
||||
"showFirstLevelHeading": true,
|
||||
"headingIndent": true
|
||||
},
|
||||
"command": {
|
||||
"pinnedCommands": []
|
||||
},
|
||||
"other": {
|
||||
"useTagEditorSuggest": true,
|
||||
"devMode": false
|
||||
}
|
||||
}
|
||||
+5
File diff suppressed because one or more lines are too long
+9
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"id": "fuzzy-chinese-pinyin",
|
||||
"name": "Fuzzy Chinese Pinyin",
|
||||
"description": "Provide the function of fuzzy search using Chinese Pinyin.",
|
||||
"author": "lazyloong",
|
||||
|
||||
"minAppVersion": "1.0.0",
|
||||
"version": "2.29.2"
|
||||
}
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
.suggestion-item.fz-item {
|
||||
position: relative;
|
||||
display: flex;
|
||||
}
|
||||
.suggestion-item.fz-item .suggestion-flair {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.suggestion-item .fz-suggestion-content {
|
||||
width: 100%;
|
||||
display: inline-block;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-right: auto;
|
||||
}
|
||||
.suggestion-item .fz-suggestion-title {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
.suggestion-item .fz-suggestion-tags {
|
||||
display: inline;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.suggestion-item .fz-suggestion-tags .tag {
|
||||
position: relative;
|
||||
bottom: 2px;
|
||||
font-size: 10px;
|
||||
margin-left: 6px;
|
||||
pointer-events: none;
|
||||
}
|
||||
.suggestion-item .fz-suggestion-flair {
|
||||
display: inline-block;
|
||||
align-items: center;
|
||||
align-self: center;
|
||||
flex-shrink: 0;
|
||||
position: absolute;
|
||||
right: 2%;
|
||||
top: 17px;
|
||||
color: var(--text-muted);
|
||||
opacity: var(--icon-opacity);
|
||||
margin: 0 4px 0 12px;
|
||||
}
|
||||
|
||||
.suggestion-item .fz-suggestion-note {
|
||||
font-size: 0.8em;
|
||||
color: var(--text-muted);
|
||||
width: 100%;
|
||||
flex-basis: 100%;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.suggestion-item .fz-suggestion-aux {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-self: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.suggestion-item .fz-suggestion-aux kbd.suggestion-command {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.fuzzy-chinese-attachment-extensions {
|
||||
width: 7rem;
|
||||
height: 20rem;
|
||||
resize: vertical;
|
||||
}
|
||||
Reference in New Issue
Block a user