mirror of
https://github.com/heyman/heynote.git
synced 2024-11-22 07:54:11 +01:00
25 lines
1.3 KiB
TypeScript
25 lines
1.3 KiB
TypeScript
export const keyHelpStr = (platform: string) => {
|
|
const modChar = platform === "darwin" ? "⌘" : "Ctrl"
|
|
const altChar = platform === "darwin" ? "⌥" : "Alt"
|
|
|
|
const keyHelp = [
|
|
[`${modChar} + Enter`, "Add new block below the current block"],
|
|
[`${altChar} + Enter`, "Add new block before the current block"],
|
|
[`${modChar} + Shift + Enter`, "Add new block at the end of the buffer"],
|
|
[`${altChar} + Shift + Enter`, "Add new block at the start of the buffer"],
|
|
[`${modChar} + ${altChar} + Enter`, "Split the current block at cursor position"],
|
|
[`${modChar} + L`, "Change block language"],
|
|
[`${modChar} + Down`, "Goto next block"],
|
|
[`${modChar} + Up`, "Goto previous block"],
|
|
[`${modChar} + A`, "Select all text in a note block. Press again to select the whole buffer"],
|
|
[`${modChar} + ${altChar} + Up/Down`, "Add additional cursor above/below"],
|
|
[`${altChar} + Shift + F`, "Format block content (works for JSON, JavaScript, HTML, CSS and Markdown)"],
|
|
]
|
|
|
|
if (platform === "win32" || platform === "linux") {
|
|
keyHelp.push([altChar, "Show menu"])
|
|
}
|
|
const keyMaxLength = keyHelp.map(([key]) => key.length).reduce((a, b) => Math.max(a, b))
|
|
|
|
return keyHelp.map(([key, help]) => `${key.padEnd(keyMaxLength)} ${help}`).join("\n")
|
|
} |