blankname
blankname
@faho That's pretty nice. Unfortunately `complete -C` doesn't seem to always return the same results that you get with tab completion in fish (with `commandline -f complete`). An area where...
Maybe related: init.vim ``` call plug#begin('~/.config/nvim/plugged') Plug 'haya14busa/incsearch.vim' call plug#end() map / (incsearch-forward) ``` test.txt ``` call plug#begin('~/.config/nvim/plugged') call plug#begin('~/.config/nvim/plugged') ``` run ```nvim -u init.vim test.txt ``` press ```qqv/(dqj@q``` Expect...
@mindfulsource Are you using `master`? It's newer than the latest release. If you are, could you post a log (or errors if there are any)?
@tonycpsu Do all of the problems you encounter happen shortly after changing videos? #54 Should fix these issues.
I believe the example is wrong (it should use valid xml/xhtml not html). The Serde implementation has `check_end_names` set to `true` on the `Reader`: https://github.com/tafia/quick-xml/blob/303003f94ce4114fc8c4e4d146d171b3f2cad2b7/src/de/mod.rs#L159 The parser expects the ``...
@krobelus I believe you need to replace the `=` with a space.
FWIW, I've tried it and it works for me.
Sounds like something that would fit well in the humantime crate (it currently only supports parsing durations). https://github.com/tailhook/humantime
Instead of merging dag/vim-fish#44, I've added a commit that just drops '/' from the `iskeyword` definition. I didn't remove the `iskeyword` definition entirely because I believe including '_' and '.'...