首页 产品价格 LaTeX 模板
自定义快捷键

自定义快捷键 #

TeXPage 的编辑器使用开源的 CodeMirror 6,有能力的用户可以通过 TamperMonkey 自行编程设置自定义快捷键。

设置自定义快捷键有可能影响编辑器使用,如果遇到问题,发送邮件至 support@texpage.com,我们会帮助您解决。

基础样例代码 #

// ==UserScript==
// @name         TeXPage Editor Custom Keybindings
// @namespace    http://tampermonkey.net/
// @match        https://www.texpage.com/project/*
// @match        https://texpage.com/project/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  const getEditorTimer = setInterval(() => {
    // TeXPage editor instance
    const editor = window._texpage_editor
    if (editor === undefined) return;
    clearInterval(getEditorTimer)

    // Your code here...

    console.log("TeXPage Editor Custom Keybindings Started!")
  }, 200)
})();