voldikss

Results 54 comments of voldikss

我用的是 Windows gitbash,每次也需要 `redraw`。但是我给打开浏览器的函数增加了异步方法之后这个情况就消失了(#72),所以我觉得可能不是 启动服务器所导致 而是 打开浏览器所导致的。不知道对不对。

I also have this problem, I solved it by adding this line to the end of my `.vimrc`. ```vim inoremap strcharpart(getline('.'),getpos('.')[2]-1,1) == '}' ? "\\O" : "" ``` Now I...

What's the output of `:echo &shell`?

What about in the built in terminal opened with `:terminal`?

Strange... but I can not reproduce it :crying_cat_face:

Hi @timsofteng , you should use `floaterm` instead of `vim` when nnn prompt you `open with: `

> > Ah, sorry I tested on neovim, you are right there is still a bug. I am suggesting a new way to handle opening files in #184. > >...

Just ```vim :term nnn -p "/tmp/tmpfile" "/home/dyzh/dotfiles" ``` also lead to the problem, so this might be an issue of vim/nvim/nnn.

Put this code into `after/ftplugin/floaterm.vim`: ```vim function s:open_in_normal_window() abort let f = findfile(expand('')) if !empty(f) && has_key(nvim_win_get_config(win_getid()), 'anchor') FloatermHide execute 'e ' . f endif endfunction nnoremap gf :call open_in_normal_window()...