编辑器工具使用技巧汇总

VSCode

  1. Wechseln zwischen Text-Editor und Terminal
    1. Command+K+S oder in Menü Code->Pereferenc->Hotky, öffnet Hot-Key Editor Fenster.
    2. Tip terminal in Suchfeld, findet die Binding `^``, löscht diese Einstellung.
    3. Sucht den “workbench.action.terminal.focus”, bindet es mit Key ⌃<.
    4. Sucht den “workbench.action.focusActiveEditorGroup”, bindet es wiederum mit Schlüssel ⌃<, und Wenn-Kondition “terminalFocus”.

Typora

更多更详细的内容请参阅 Typora Wiki

Typora Wiki (wiki-website Project)

个性化快捷键

Windows

文件—>偏好设置—>往高级设置 ,点击看到两个json格式的文件,打开第二个(conf.user.json), 用记事本打开,第17行keyBinding,在大括号中写 代码块:“你要设置的快捷键”,比如我的是代码块:Ctrl+Alt+P,保存文件,重启typora即可生效。更详细介绍

1
2
3
4
5
6
7
8
// Custom key binding, which will override the default ones.
"keyBinding": {
// for example:
// "Always on Top": "Ctrl+Shift+P"
"注释":"Ctrl+Alt+/",
"代码块":"Ctrl+Alt+P",
"打开文件夹…":"Ctrl+Alt+O"
},

Mac

官方说明

需要到系统偏好设置—>键盘-->快捷键-->应用快捷键那边设置。找到 Typora.App,菜单名称填 代码,然后输入希望的快捷键。我的设置是⌃+⌘+C

更改风格

开发好的工具 如何客制化格式

简单使用:添加 base.user.css 文件,并改变行内代码的颜色,以及公式颜色

1
2
3
4
5
6
7
8
9
# 行内代码
code {
color: red
}

# 行内公式
.MathJax_SVG{
color: DarkBlue;
}

Typora的代码使用 CodeMirror 项目,尝试了一下修改 base.user.css 文件确实可以改变代码段的高度,并带滚动。但同时也限定了进行代码编辑时的整个窗口高度。所以没有用

1
2
3
4
5
6
7
8
9
# 缺点:打开源代码模式的时候,整个页面也被限制成了只有300px
.CodeMirror {
max-height: 300px;
}
.CodeMirror-scroll {
overflow-y: auto;
overflow-x: auto;
max-height: 300px;
}

注意到书写模式的时候,整个编辑器都被包裹在 <div id="write"> </div> 里面。在源代码模式的时候,没有这个 write 元素的包裹,而整个源代码窗口都被作用为一个 CodeMirror 元素对待。因此,作一些改变就能满足要求

1
2
3
4
5
6
7
8
9
10
11
#write .CodeMirror {
max-height: 350px;
}
# 设定上下 padding 会让滚动条在小代码区消失
#write .CodeMirror-scroll {
overflow-y: auto;
overflow-x: auto;
max-height: 330px;
padding-top: 10px;
padding-bottom: 10px;
}
1
# 避免只有一行的代码区,因为会显示滚动条,不好看。一行代码就用行内代码好了。

如果要限制来自 GistHub 的代码高度,只能限定其父元素 iframe

1
2
3
iframe {
max-height: 500px;
}

Windows版的 Typora 的数学模块保存在 path/resource/app/lib.asar 压缩文件中。需要用asar解压

如何查看 asar 内部结构

asar 如何加密解密

1
2
3
npm install -g asar
asar extract 压缩文件 解压文件夹
asar pack 文件夹 压缩文件名

文本搜索

打开的单篇文章内搜索:

Windows Control + F

Mac ⌘+F

文件夹内的搜索

Windows Control + Shift + F

Mac ⇧+⌘+F

-----------------------本文结束感谢您的阅读-----------------------