Rename evil-eaf.el to eaf-evil.el

master
Mingde (Matthew) Zeng 6 years ago
parent 773868f522
commit 314278c6bb
  1. 11
      README.md
  2. 6
      README.zh-CN.md
  3. 10
      eaf-evil.el

@ -187,6 +187,17 @@ If you use Socks5 as local proxy, one can set proxy type with:
(setq eaf-proxy-type "socks5") (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 ## EAF in the community
A list of other community packages that use EAF to enhance their graphical experiences! A list of other community packages that use EAF to enhance their graphical experiences!

@ -185,14 +185,14 @@ Markdown预览程序依赖grip,你需要访问[Github Personal access token](h
(setq eaf-proxy-type "socks5") (setq eaf-proxy-type "socks5")
``` ```
### evil 集成 ### evil-mode 集成
开启办法: 开启办法:
```elisp ```elisp
(require 'evil-eaf) (require 'eaf-evil)
``` ```
evil-eaf 会动态查询 eaf 应用的按键绑定, 使得 evil 在 normal 模式下也能够很好的支持 eaf 应用。 eaf-evil 会动态查询 eaf 应用的按键绑定, 使得 evil 在 normal 模式下也能够很好的支持 eaf 应用。

@ -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 ;; Description: Emacs application framework
;; Author: lee <loyalpartner@163.com> ;; Author: lee <loyalpartner@163.com>
;; Maintainer: Andy Stewart <lazycat.manatee@gmail.com> ;; Maintainer: Andy Stewart <lazycat.manatee@gmail.com>
;; Copyright (C) 2018, Andy Stewart, all rights reserved. ;; Copyright (C) 2018, Andy Stewart, all rights reserved.
;; Created: 2020-05-17 12:31:12 ;; Created: 2020-05-17 12:31:12
;; Version: 0.5 ;; Version: 0.5
;; Last-Updated: Wed May 13 10:59:10 2020 (-0400) ;; Last-Updated: Wed May 20 11:48:43 2020 (-0400)
;; By: Lee ;; By: Mingde (Matthew) Zeng
;; URL: http://www.emacswiki.org/emacs/download/eaf.el ;; URL: http://www.emacswiki.org/emacs/download/eaf.el
;; Keywords: ;; Keywords:
;; Compatibility: GNU Emacs 27.0.50 ;; Compatibility: GNU Emacs 27.0.50
@ -100,4 +100,4 @@
(with-eval-after-load "evil" (with-eval-after-load "evil"
(eaf-enable-evil-intergration)) (eaf-enable-evil-intergration))
(provide 'evil-eaf) (provide 'eaf-evil)
Loading…
Cancel
Save