我想知道是否可以使用快捷方式在atom-editor中粘贴用户定义的文本。如果可能的话,我想知道如何。
例如,按Alt-Shift-F会将\frac{}{}
粘贴到编辑器中。
答案 0 :(得分:1)
这是一个使用shift + space插入html不可破坏空间的示例。
在init脚本中:
atom.commands.add 'atom-text-editor', 'custom:html-hard-space',->
editor = atom.workspace.getActiveTextEditor()
editor.insertText(' ')
在你的keynmap中:
'atom-text-editor:not([mini])':
'shift-space': 'custom:html-hard-space'