问题标签 [atom-editor]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
github - Atom Editor 键盘映射是否支持功能键?喜欢 F5
我设置keymap.cson
了这个条目。在调色板中,我可以看到F5
与此命令相关联,但按下F5
不会触发它
'.workspace .editor':
'F5': 'runner:run'
github - 如何调用原子包?
我安装了atom-runner 包。我想创建一个自定义命令以从调色板执行以保存当前文件,然后执行运行程序。获取编辑器并保存文件有效。
runner:run
失败AtomRunner.run()
atom.workspaceView.command 'MyEntry:runner', ->
editor = atom.workspace.getActiveEditor()
editor.save()
runner:run
atom-editor - 如何在 Linux 上升级 Atom 编辑器?
在 Linux Ubuntu 上升级 atom 的最佳方法是什么?我使用官方文档安装 atom
atom-editor - 无法使用 atom-runner 在 Atom 中运行 Scriptcs 脚本
我正在尝试在 Mac 上设置 Atom 编辑器以与 ScriptCs 脚本一起使用。所以我按照指南去做。
我的 .profile 中有 scriptcs 作为别名。scriptcs test.csx
在用于启动 Atom 的终端中运行,可以正常工作。Atom 似乎不知道配置文件别名。
我应该怎么做才能在 Atom 中完成这项工作?
javascript - CoffeeScript:录制语音并输出文本
我正在为 github 的 atom 制作一个包。在那我需要录制语音并将其输出到窗口上。
如何录制语音并输出为咖啡脚本中的文本?
javascript - CoffeeScript:Github ATOM,Atom API 的 getSelection 替代品?
如果要在网页上获取用户的选择,可以在 js 文件中使用 window.getSelection()。
我无法为 github 的 atom 找到类似的方法。(在他们的 API 或咖啡脚本中的某些东西中)。
我可以使用什么?
shell - Atom Editor - 在 Windows 上安装 Minimap 包
我正在尝试在 Windows 中为 Atom 编辑器安装小地图插件(模仿 sublime 小地图),但是当我这样做时,我收到一条错误消息:
“依赖于包含 C/C++ 代码的模块的软件包将无法安装。运行 apm install --check...”
在小地图的文档中,它说要运行:
当我尝试运行 apm 时,它说找不到命令...
在线我发现其他帖子说您可以转到 Atom 工具栏和“Atom > 安装 Shell 命令”,但在 Windows 上没有 Atom 工具栏,据我所知,这是 Mac 版本。有没有其他人在 Windows 上有任何成功?
我认为它很简单,我只是想念它。我认为我需要做的是让 apm 命令行工具能够在我的终端上运行,这样我就可以运行“atom install minimap”。
提前致谢!
javascript - Atom 编辑器:如何需要 javascript 库?
我想知道如何在咖啡脚本代码中需要 javascript 库?这是参考 Github 的 atom 编辑器。