qadzek
qadzek
I have the same problem on Linux Mint 22, using v5.5.0, for a bunch of Markdown files. There is no option given to resolve the issue.  
I also experience this bug. I tried several terminal emulators, but it turns out Tmux is causing this issue. The blinking cursor is visible when I use e.g. Alacritty or...
Hello @wustho, no worries, I just make sure that I am not running Tmux when I start Epy. I don't even know if Tmux or Epy is to blame for...
I am using this snippet based on xaizek's [dotfiles](https://github.com/xaizek/dotvifm/blob/master/vifmrc). It provides an indicator if nesting is occurring. ```vim if $INSIDE_VIFM != '' let $SL_PREFIX = 'Nested ' else if $PS1...
Thanks for the suggestions. I was looking for a stronger `j` key, to quickly scroll images with a very large height. `J : 5scroll down` is doing exactly what I...
Try adding this to your `zshrc`: ```zsh # Normal mode function append-last-word { ((++CURSOR)); zle insert-last-word; } zle -N append-last-word bindkey -M vicmd '\e.' append-last-word # Insert mode bindkey -M...
Hi @tinmarino, any chance you could take a look at this PR? Many thanks.
This snippet should do the job: https://old.reddit.com/r/vim/comments/ql1b6o/how_to_copymove_everything_between_3_backticks/hj1aql9/
I can't reproduce this issue. `d5a6d097da1c67e07b3fb073f22217c7462f5088` is a commit from 2012.
Adding the following to `package.json` and then re-installing the dependencies fixed this for me. Note that I am using `pnpm`: ```json "pnpm": { "overrides": { "whatwg-url": "^14.0.0" } } ```...