问题标签 [ergoemacs]
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.
emacs - Ergoemacs Cx 和 Cc 快捷方式,以及 Apple Cmd 快捷方式
对于 ergoemacs,重新映射到的 Cx 和 Cc 快捷方式是什么?
似乎没有一个页面可以帮助人们从常规 emacs 过渡到 ergoemacs 模式。他们只有一张包含所有内容的键盘图片,没有关于 Cx 和 Cc 的任何信息。
同样对于 Apple 键盘,当它说 Ctrl/Cmd 时,这是否意味着可以使用其中任何一个?看起来不像。似乎 OS X Cmd 快捷方式优先于 ergoemacs 快捷方式。直到 Ctrl/Cmd 意味着别的东西?
html - 如何在 Ergoemacs 中启用 html 标签对突出显示模式
如何在 Ergoemacs 中启用 HTML 标签对突出显示模式。
我在Windows 7 上使用Emacs 的Ergo 版本——即Ergoemacs。
我发现了一个处理类似问题的线程——即sgml
和xml
标签: Emacs matching tags highlighting
该其他线程中建议的解决方案是使用名为 的库hl-tags-mode.el
,该库位于以下 Github 链接:
https://github.com/deactivated/hl-tags-mode/blob/master/hl-tags-mode.el
hl-tags-mode.el
我将该库复制到我的.emacs.d/
文件夹并按下Alt-a hg-tags-mode
- Emacs 给我一条消息,指出"No Match"。
最后:我放弃了 ergoemacs,以下步骤奏效了:
- 从网上下载emacs-24.3-bin-i386.zip
- 解压到 d:\emacs-24.3\
- 下载 hl-tags-mode.el 到 D:\emacs-24.3\site-lisp\
- 添加
(require 'hl-tags-mode)
(add-hook 'sgml-mode-hook (lambda () (hl-tags-mode 1)))
(add-hook 'nxml-mode-hook (lambda () (hl-tags-mode 1)))
到 C:\Users\Name\AppData\Roaming.emacs
启动 emacs 并打开一个 html 文件,瞧!匹配的标签被突出显示
emacs - 在 ergoemacs 中安装 habitrpg.el
我正在为从http://ergoemacs.org/index.html下载的 Windows 使用 ergoemacs 。版本如下:
GNU Emacs 24.2.1 (i386-mingw-nt6.1.7601) 于 2012 年 8 月 29 日在 MARVIN ErgoEmacs 发行版 2.0.0 上
当我按照说明安装 habitrpg.el ( https://github.com/ryjm/habitrpg.el ) 时,出现以下错误:
Symbol 的函数定义为 void:cl-eval-when。
我尝试评论这条指令,但我再次遇到 cl-defstruct 的相同错误。我相信这与 cl.el 有关,但我不确定我可以使用哪个替代 cl 文件,或者我是否可以使用任何其他与 ErgoEmacs 兼容的 habitrpg.el。请做必要的事情,如果您需要有关此内容的更多信息,请告诉我。
emacs - 启用 ergoemacs 时 ido-completion-map 键不起作用
使用 ergo emacs 时,由于某种原因,Ml 和 Mj(分别为 forward-char 和 back-char)在 minibuffer(使用 ido 模式)中无法正常工作。
我尝试使用以下内容设置 ido-completion-map:
但这些似乎没有坚持。
我似乎遇到了与此人类似的问题:ido-mode binding masked by global-set-key但似乎没有一个解决方案对我有用
任何帮助将不胜感激
亲切的问候尼迈
encryption - MS Windows 中的 Emacs org 文件加密
我想加密我的 org 文件(org-mode)或 emacs 中的文件区域。该工具中给出的选项不起作用(给我错误应用:搜索程序:没有这样的文件或目录,gpg)。我猜是因为我在 Windows 上使用 emacs,并且关于这个主题的所有搜索都指向加密 UNIX 平台上的文件。您能否帮助我了解如何在 Windows 上实现加密。提前致谢。
我正在为从http://ergoemacs.org/index.html下载的 Windows 使用 ergoemacs 。版本如下:
GNU Emacs 24.2.1 (i386-mingw-nt6.1.7601) 于 2012 年 8 月 29 日在 MARVIN ErgoEmacs 发行版 2.0.0 上
macos - Emacs 24.4 无法加载 Ergoemacs [Mac OS]
我对 Mac OS 上的 emacs 和 ergoemacs 有疑问。
我做了什么:
- 我安装了最新版本的 emacs (24.4):
sudo 端口安装 emacs
从http://ergoemacs.org/下载 ergoemacs 并将其放入文件夹 ~/.emacs.d
添加到文件 ~/.emacs:
(setenv "ERGOEMACS_KEYBOARD_LAYOUT" "我们") ; 美国
(加载文件“~/.emacs.d/ergoemacs/site-lisp/site-start.el”)
当我尝试启动 emacs 时,我收到一个错误:
使用调试模式:
emacs - 如何使用 ergoemacs-mode 键绑定在 yaml-mode 中设置标记?
我是 Emacs (v24.5) 新手,我将它与ergoemacs-mode (v5.14.7.3.1) 键绑定一起使用。
我经常需要手动编辑 YAML 格式的数据,我在yaml 模式(v20160101.921) 下进行编辑,因为它的突出显示和正确的缩进。
但是,当我尝试使用ergoemacs-mode键在yaml-mode中设置标记时,它什么也不做,只说:M-SPC
edmacro-parse-keys: M- 必须是单个字符的前缀,而不是 SPc
请您建议我如何M-SPC
在yaml-mode中表现得像Emacs 中的其他任何地方一样(即org-mode、ess)。
编辑:在较新版本的 ergoemacs-mode 中解决