James Cherti

Results 16 comments of James Cherti

I have created a new pull request that adds eat to the packages supported by evil-collection: https://github.com/emacs-evil/evil-collection/pull/806

For Emacs Flymake users, **[flymake-ansible-lint.el](https://github.com/jamescherti/flymake-ansible-lint.el)** enables Ansible playbook linting with `ansible-lint`.

The ability to change the background color would be a valuable improvement.

I tried the patch with `markdown-mode` and `edit-indirect`, but it does not fix the issue. (It does not restore the cursor position when `edit-indirect-region` or `edit-indirect-commit` is called.) ## Markdown...

This is one of the reasons why I developed [enhanced-evil-paredit](https://github.com/jamescherti/enhanced-evil-paredit.el) ([available on MELPA](https://melpa.org/#/enhanced-evil-paredit)), a fork of evil-paredit. It fixes this issue along with a few others. If your sole objective...

> I cannot reproduce this. Is this also related to evil-mode, perchance? No, this is unrelated to evil-mode. I pressed `C-x C-d`, chose a directory: Here is the result:

In the current version of `consult-dir`, a `/` is prepended to `new-full-name` when `consult-dir-shadow-filenames` is set to non-nil: ```elisp (if consult-dir-shadow-filenames (insert "/" new-full-name) (delete-minibuffer-contents) (insert new-full-name)) ``` Changing `(insert...

(This is unrelated to `evil-mode`.) Pressed **Ctrl+Shift+`:`**, then typed `"test "`: Pressed `C-x C-d` and selected the first entry: Here is what was inserted:

Consult-dir inserted `~/.emacs.d/lisp/packages/test`, which is incorrect. It should have inserted `~/.emacs.d/lisp/packages/`. The minibuffer prompt content ('test') must not be appended. (Another example: typing `BUG` in the minibuffer and then pressing...