Dag Odenhall
Dag Odenhall
Well there are plenty of ways you can disable it without touching vim2hs or adding options to it: ```vim " Use folds but keep them open by default setglobal foldlevelstart=99...
Admittedly that last line might get overridden by vim2hs unless you move it from the autocmd to an `after` directory (`:help after-directory`) which might be an argument for adding an...
Doesn't `del db[key]` work?
According to https://github.com/spf13/spf13-vim#adding-new-plugins it seems you need to put ``` vim Bundle 'dag/vim-fish' ``` in `~/.vimrc.bundles.local`. I'll see about adding generic instructions to the README, so I'll leave this open.
May need to restart _after_ `:BundleInstall`.
You don't want ``` vim syntax enable filetype plugin indent on ``` in `~/.vim/ftplugin/fish.vim`, and in fact this is probably done for you by spf13 already.
Ah, yeah. The problem here is most colorschemes including Vim's default doesn't have a pretty style for the `Conceal` highlight group, which is why I had been overriding it in...
It feels dirty, but I suppose you have a point about production where fault-tolerance might have a higher priority than correctness. In the rewrite branch this would be easy to...
You need to set `shiftwidth=2` to get indentation similar to the screenshots, but even then it won't be able to handle everything if you try to indent whole blocks. It's...
> Re multiline type signature, couldn't indentexpr notice it's a continuation if starts with -> (or similar logic) and indent accordingly? Sure, we could do that, and it might improve...