diff --git a/README.md b/README.md index 2620722..2bb62b8 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,17 @@ If you use Socks5 as local proxy, one can set proxy type with: (setq eaf-proxy-type "socks5") ``` + +### Integration with evil-mode + +Enable with +```elisp +(require 'eaf-evil) +``` + +eaf-evil will dynamically rebind eaf keybindings so that evil-mode works nicely in normal state. + + ## EAF in the community A list of other community packages that use EAF to enhance their graphical experiences! diff --git a/README.zh-CN.md b/README.zh-CN.md index 55fb4bb..d5167c3 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -185,14 +185,14 @@ Markdown预览程序依赖grip,你需要访问[Github Personal access token](h (setq eaf-proxy-type "socks5") ``` -### evil 集成 +### evil-mode 集成 开启办法: ```elisp -(require 'evil-eaf) +(require 'eaf-evil) ``` -evil-eaf 会动态查询 eaf 应用的按键绑定, 使得 evil 在 normal 模式下也能够很好的支持 eaf 应用。 +eaf-evil 会动态查询 eaf 应用的按键绑定, 使得 evil 在 normal 模式下也能够很好的支持 eaf 应用。 diff --git a/evil-eaf.el b/eaf-evil.el similarity index 95% rename from evil-eaf.el rename to eaf-evil.el index 6230d92..fd3e3c3 100644 --- a/evil-eaf.el +++ b/eaf-evil.el @@ -1,14 +1,14 @@ -;; evil-eaf.el --- Emacs application framework -*- lexical-binding: t; -*- +;; eaf-evil.el --- Emacs application framework -*- lexical-binding: t; -*- -;; Filename: evil-eaf.el +;; Filename: eaf-evil.el ;; Description: Emacs application framework ;; Author: lee ;; Maintainer: Andy Stewart ;; Copyright (C) 2018, Andy Stewart, all rights reserved. ;; Created: 2020-05-17 12:31:12 ;; Version: 0.5 -;; Last-Updated: Wed May 13 10:59:10 2020 (-0400) -;; By: Lee +;; Last-Updated: Wed May 20 11:48:43 2020 (-0400) +;; By: Mingde (Matthew) Zeng ;; URL: http://www.emacswiki.org/emacs/download/eaf.el ;; Keywords: ;; Compatibility: GNU Emacs 27.0.50 @@ -100,4 +100,4 @@ (with-eval-after-load "evil" (eaf-enable-evil-intergration)) -(provide 'evil-eaf) +(provide 'eaf-evil)