evil-owl
evil-owl copied to clipboard
preview registers and marks before actually using them
I added the suggested config to my `init.el`: ``` (use-package evil-owl :config (setq evil-owl-max-string-length 500) (add-to-list 'display-buffer-alist '("*evil-owl*" (display-buffer-in-side-window) (side . bottom) (window-height . 0.3))) (evil-owl-mode)) ``` `evil-owl-mode` is activated...
Hi, how are you? I think this package helps a lot visualizing what you are doing before doing it. Unfortunately, for me, it breaks pasting from insert with visual-block. For...
minimal config: ```emacs-lisp ;;; emacs -Q -l ~/.config/emacs/test.el (package-initialize) (require 'evil) (require 'evil-owl) (evil-mode) (evil-owl-mode) (setq evil-owl-display-method 'posframe) ``` Backtrace: ``` Debugger entered--Lisp error: (error "Attempt to delete the sole...
Would it be possible to add an option for the register to show until the motion or edit is executed? This seems to be how `vim-peekaboo` behaves (plus highlighting the...