diff --git a/plugin/commander.js b/plugin/commander.js
index 60761f4d..2c997094 100644
--- a/plugin/commander.js
+++ b/plugin/commander.js
@@ -11,7 +11,7 @@ class commanderPlugin extends global._basePlugin {
style = () => {
const textID = "plugin-commander-style"
const text = `
- #typora-commander {
+ #plugin-commander {
position: fixed;
top: 30%;
left: 55%;
@@ -26,18 +26,18 @@ class commanderPlugin extends global._basePlugin {
transform: translate3d(0, 0, 0)
}
- .mac-seamless-mode #typora-commander {
+ .mac-seamless-mode #plugin-commander {
top: 30px
}
- #typora-commander-form {
+ #plugin-commander-form {
display: flex;
align-items: center;
font-size: 14px;
line-height: 25px;
}
- #typora-commander-form select, input {
+ #plugin-commander-form select, input {
border: 1px solid #ddd;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
border-radius: 2px;
@@ -46,7 +46,7 @@ class commanderPlugin extends global._basePlugin {
margin-bottom: 1px;
}
- #typora-commander-form input {
+ #plugin-commander-form input {
width: 60%;
margin-left: 0;
margin-right: 2.5px;
@@ -54,14 +54,14 @@ class commanderPlugin extends global._basePlugin {
padding-right: 24px;
}
- #typora-commander-form select {
+ #plugin-commander-form select {
width: 20%;
margin-left: 2.5px;
margin-right: 0;
padding: 1px 2px;
}
- #typora-commander-form .typora-commander-commit {
+ #plugin-commander-form .plugin-commander-commit {
position: absolute;
padding: 1px;
left: 335px;
@@ -70,7 +70,7 @@ class commanderPlugin extends global._basePlugin {
display: none;
}
- .typora-commander-output {
+ .plugin-commander-output {
margin-top: 0;
cursor: default;
max-height: 340px;
@@ -79,18 +79,18 @@ class commanderPlugin extends global._basePlugin {
display:none;
}
- .typora-commander-output pre {
+ .plugin-commander-output pre {
display: inline-block;
font-size: 13px;
line-height: 1.1;
margin: 10px 10px 5px 5px;
}
- .typora-commander-output pre.error {
+ .plugin-commander-output pre.error {
color: red;
}
- #typora-commander-form input:focus, pre:focus {
+ #plugin-commander-form input:focus, pre:focus {
outline: 0
}
`;
@@ -103,28 +103,28 @@ class commanderPlugin extends global._basePlugin {
`;
const builtin = this.config.BUILTIN.map(ele => ``).join("");
- const builtinSelect = !this.config.USE_BUILTIN ? "" : ``;
+ const builtinSelect = !this.config.USE_BUILTIN ? "" : ``;
const div = `
-
+
-
-
+
+
${builtinSelect}
-
+
`
const modal = document.createElement("div");
- modal.id = 'typora-commander';
+ modal.id = 'plugin-commander';
modal.style.display = "none";
modal.innerHTML = div;
this.utils.insertDiv(modal);
if (!this.config.USE_BUILTIN) {
- document.getElementById('typora-commander').style.width = "500px";
- document.querySelector("#typora-commander-form input").style.width = "80%";
- document.querySelector("#typora-commander-form .typora-commander-commit").style.left = "375px";
+ document.getElementById('plugin-commander').style.width = "500px";
+ document.querySelector("#plugin-commander-form input").style.width = "80%";
+ document.querySelector("#plugin-commander-form .plugin-commander-commit").style.left = "375px";
}
}
@@ -137,13 +137,13 @@ class commanderPlugin extends global._basePlugin {
init = () => {
this.modal = {
- modal: document.getElementById('typora-commander'),
- input: document.querySelector("#typora-commander-form input"),
- shellSelect: document.querySelector("#typora-commander-form .typora-commander-shell"),
- builtinSelect: document.querySelector("#typora-commander-form .typora-commander-builtin"),
- commit: document.querySelector("#typora-commander-form .typora-commander-commit"),
- output: document.querySelector(".typora-commander-output"),
- pre: document.querySelector(".typora-commander-output pre"),
+ modal: document.getElementById('plugin-commander'),
+ input: document.querySelector("#plugin-commander-form input"),
+ shellSelect: document.querySelector("#plugin-commander-form .plugin-commander-shell"),
+ builtinSelect: document.querySelector("#plugin-commander-form .plugin-commander-builtin"),
+ commit: document.querySelector("#plugin-commander-form .plugin-commander-commit"),
+ output: document.querySelector(".plugin-commander-output"),
+ pre: document.querySelector(".plugin-commander-output pre"),
}
this.arg_value_prefix = "call_builtin-";
@@ -196,7 +196,7 @@ class commanderPlugin extends global._basePlugin {
this.modal.modal.style.display = "none";
break
case "Tab":
- const targetClass = this.config.USE_BUILTIN ? ".typora-commander-builtin" : ".typora-commander-shell";
+ const targetClass = this.config.USE_BUILTIN ? ".plugin-commander-builtin" : ".plugin-commander-shell";
const target = ev.target.closest(targetClass);
if (target) {
ev.stopPropagation();
diff --git a/plugin/search_multi.js b/plugin/search_multi.js
index e44449bf..edef9bd6 100644
--- a/plugin/search_multi.js
+++ b/plugin/search_multi.js
@@ -2,7 +2,7 @@ class searchMultiKeywordPlugin extends global._basePlugin {
style = () => {
const textID = "plugin-search-multi-style";
const text = `
- #typora-search-multi {
+ #plugin-search-multi {
position: fixed;
top: 40px;
left: 60%;
@@ -17,7 +17,7 @@ class searchMultiKeywordPlugin extends global._basePlugin {
transform: translate3d(0, 0, 0)
}
- #typora-search-multi .search-result-title {
+ #plugin-search-multi .search-result-title {
padding-left: 20px;
font-size: 10px;
margin-top: 4px;
@@ -26,15 +26,15 @@ class searchMultiKeywordPlugin extends global._basePlugin {
height: 16px;
}
- .mac-seamless-mode #typora-search-multi {
+ .mac-seamless-mode #plugin-search-multi {
top: 30px
}
- #typora-search-multi-input {
+ #plugin-search-multi-input {
position: relative;
}
- #typora-search-multi-input input {
+ #plugin-search-multi-input input {
width: 100%;
font-size: 14px;
line-height: 25px;
@@ -47,18 +47,18 @@ class searchMultiKeywordPlugin extends global._basePlugin {
padding-right: 50px;
}
- #typora-search-multi-input input:focus {
+ #plugin-search-multi-input input:focus {
outline: 0
}
- #typora-search-multi-input svg {
+ #plugin-search-multi-input svg {
width: 20px;
height: 14px;
stroke: none;
fill: currentColor
}
- #typora-search-multi-input .option-btn {
+ #plugin-search-multi-input .option-btn {
position: absolute;
top: 7px;
opacity: .5;
@@ -67,23 +67,23 @@ class searchMultiKeywordPlugin extends global._basePlugin {
cursor: pointer;
}
- #typora-search-multi-input .case-option-btn {
+ #plugin-search-multi-input .case-option-btn {
right: 6px;
padding: 2px 1px;
}
- #typora-search-multi-input .path-option-btn {
+ #plugin-search-multi-input .path-option-btn {
right: 30px;
padding: 1px 3px;
}
- #typora-search-multi-input .option-btn.select, .option-btn:hover {
+ #plugin-search-multi-input .option-btn.select, .option-btn:hover {
background: var(--active-file-bg-color);
color: var(--active-file-text-color);
opacity: 1
}
- .typora-search-multi-item {
+ .plugin-search-multi-item {
display: block;
font-size: 14px;
height: 40px;
@@ -93,21 +93,21 @@ class searchMultiKeywordPlugin extends global._basePlugin {
overflow: hidden;
}
- .typora-search-multi-item:hover,
- .typora-search-multi-item.active {
+ .plugin-search-multi-item:hover,
+ .plugin-search-multi-item.active {
background-color: var(--active-file-bg-color);
border-color: var(--active-file-text-color);
color: var(--active-file-text-color);
cursor: pointer;
}
- .typora-search-multi-item-title {
+ .plugin-search-multi-item-title {
line-height: 24px;
max-height: 24px;
overflow: hidden
}
- .typora-search-multi-result {
+ .plugin-search-multi-result {
margin-top: 0;
cursor: default;
max-height: 340px;
@@ -116,14 +116,14 @@ class searchMultiKeywordPlugin extends global._basePlugin {
display: none;
}
- .typora-search-multi-result .search-result-list {
+ .plugin-search-multi-result .search-result-list {
position: relative;
height: 520px;
overflow-y: auto;
width: 100%;
}
- .typora-search-multi-item-path {
+ .plugin-search-multi-item-path {
opacity: .5;
font-size: 11px;
margin-top: -4px;
@@ -134,7 +134,7 @@ class searchMultiKeywordPlugin extends global._basePlugin {
line-height: 14px
}
- .typora-search-multi-info-item {
+ .plugin-search-multi-info-item {
opacity: .7;
font-size: 12px;
line-height: 40px;
@@ -147,7 +147,7 @@ class searchMultiKeywordPlugin extends global._basePlugin {
html = () => {
const modal_div = `
-