Skip to content

Commit

Permalink
Update Eat documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcv committed Jul 27, 2023
1 parent 9d4d822 commit b51f8ce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support for Eat as an alternative to vterm.


### Changed

- Removed `vterm` from list of automatic dependencies. Since installing it never worked automatically anyway, this should not be a breaking change.



## [1.2.3] — 2023-05-30

### Fixed
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,14 @@ Eat requires Emacs 28.1 or later. Install and configure it. The following `use-p
(delete [?\C-u] eat-semi-char-non-bound-keys) ; make C-u work in Eat terminals like in normal terminals
(delete [?\C-g] eat-semi-char-non-bound-keys) ; ditto for C-g
(eat-update-semi-char-mode-map)
(eat-reload))
;; XXX: Awkward workaround for the need to call eat-reload after changing Eat's keymaps,
;; but reloading from :config section causes infinite recursion because :config wraps with-eval-after-load.
(defvar eat--prevent-use-package-config-recursion nil)
(unless eat--prevent-use-package-config-recursion
(setq eat--prevent-use-package-config-recursion t)
(eat-reload))
(makunbound 'eat--prevent-use-package-config-recursion)
)
```


Expand Down

0 comments on commit b51f8ce

Please sign in to comment.