Damien Rajon
Damien Rajon
Adding my two cent to this issue. I recently ventured into trying to FP-ify my code more and got into concepts that were very alien to me (I tried to...
Here is my attempt at creating text objects for fenced code blocks. It is severly untested so YMMV (: ```vim function! s:inCodeFence() " Search backwards for the opening of the...
@schoettl Thanks for sharing. Indeed Creating the mappings via `ftplugin/markdown.vim` is better than my `autocmd` on `FileType` (`after/ftplugin/` maybe even better suited for user-defined mappings). > your solution registers the...
Has anyone found a workaround to this ? I've learned to live with it for lack of a better solution but I would love a fix. edit: I did find...
Calling [this](https://github.com/pyrho/rc/blob/luaconf/nvim_lua/lua/pyrho/prettierd.lua#L5) function gathers all the lines from the current buffer and [feeds it](https://github.com/pyrho/rc/blob/luaconf/nvim_lua/lua/pyrho/prettierd.lua#L47) to [prettierd](https://github.com/fsouza/prettierd) via its stdin; the output from prettierd is then used to [replace the current...
@dvcrn @alexanderjeurissen's snippet works on my setup. Just calling `:FZF` won't work, you need to issue `:call Fzf_dev()` once you've copied the snippet to your .vimrc.
Hey, I'm really not an expert in any of the subjects I'm about to talk about, but I was asking myself how the token was refreshed, here is my investigation...
I'm using dein 1.0 with neovim (master) and Tsu 0.6.0 and I don't experience any issues. Can you provide your vimrc maybe ?
Indeed `vimproc` is not needed with NeoVim as it offer bulltin async jobs. See NeoVim's [job_control documentation](https://neovim.io/doc/user/job_control.html) for more information.
I had the same issue (with firefox), the issue is that sometimes (not sure if this is firefox specific or not) Firefox will send only the size of the payload,...