mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-22 01:20:12 +01:00
This commit is contained in:
parent
92ab94bf51
commit
72d0b6409b
4 changed files with 11 additions and 1 deletions
|
|
@ -54,6 +54,7 @@ import {fullscreen} from "../protyle/breadcrumb/action";
|
|||
import {setPadding} from "../protyle/ui/initUI";
|
||||
import {openRecentDocs} from "../business/openRecentDocs";
|
||||
import {App} from "../index";
|
||||
import {commandPanel} from "../plugin/commandPanel";
|
||||
|
||||
const getRightBlock = (element: HTMLElement, x: number, y: number) => {
|
||||
let index = 1;
|
||||
|
|
@ -602,6 +603,11 @@ export const globalShortcut = (app: App) => {
|
|||
syncGuide(app);
|
||||
return;
|
||||
}
|
||||
if (matchHotKey(window.siyuan.config.keymap.general.commandPanel.custom, event)) {
|
||||
event.preventDefault();
|
||||
commandPanel(app);
|
||||
return;
|
||||
}
|
||||
if (matchHotKey(window.siyuan.config.keymap.general.editMode.custom, event)) {
|
||||
event.preventDefault();
|
||||
editor.setReadonly();
|
||||
|
|
|
|||
|
|
@ -211,6 +211,7 @@ export abstract class Constants {
|
|||
// "⌘Home", "⌘End", "⇧↩", "↩", "PageUp", "PageDown", "⌫", "⌦" 不可自定义
|
||||
public static readonly SIYUAN_KEYMAP: IKeymap = {
|
||||
general: {
|
||||
commandPanel: {default: "⌥⇧P", custom: "⌥⇧P"},
|
||||
editMode: {default: "⇧⌘G", custom: "⇧⌘G"},
|
||||
syncNow: {default: "F9", custom: "F9"},
|
||||
enterBack: {default: "⌥←", custom: "⌥←"},
|
||||
|
|
|
|||
|
|
@ -313,6 +313,7 @@ const openPlugin = (app: App, target: Element) => {
|
|||
});
|
||||
menu.addItem({
|
||||
icon: "iconLayoutBottom",
|
||||
accelerator: window.siyuan.config.keymap.general.commandPanel.custom,
|
||||
label: window.siyuan.languages.commandPanel,
|
||||
click() {
|
||||
commandPanel(app);
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ import {Dialog} from "../dialog";
|
|||
import {App} from "../index";
|
||||
import {upDownHint} from "../util/upDownHint";
|
||||
import {openSetting} from "../config";
|
||||
import {updateHotkeyTip} from "../protyle/util/compatibility";
|
||||
|
||||
export const commandPanel = (app: App) => {
|
||||
const dialog = new Dialog({
|
||||
|
|
@ -23,7 +24,7 @@ export const commandPanel = (app: App) => {
|
|||
const liElement = document.createElement("li");
|
||||
liElement.classList.add("b3-list-item")
|
||||
liElement.innerHTML = `<span class="b3-list-item__text">${command.langText || plugin.i18n[command.langKey]}</span>
|
||||
<span class="b3-list-item__meta">${command.customHotkey}</span>`;
|
||||
<span class="b3-list-item__meta">${updateHotkeyTip(command.customHotkey)}</span>`;
|
||||
liElement.addEventListener("click", () => {
|
||||
command.callback();
|
||||
dialog.destroy();
|
||||
|
|
@ -46,6 +47,7 @@ export const commandPanel = (app: App) => {
|
|||
}
|
||||
|
||||
const inputElement = dialog.element.querySelector(".b3-text-field") as HTMLInputElement;
|
||||
inputElement.focus();
|
||||
inputElement.addEventListener("keydown", (event: KeyboardEvent) => {
|
||||
event.stopPropagation();
|
||||
if (event.isComposing) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue