Peter Aronoff

Results 54 comments of Peter Aronoff

@zigg The option is available, but Homebrew itself (the tool and the community, as far as I know) do not support it. See here for example: https://github.com/Homebrew/homebrew/wiki/FAQ#why-does-homebrew-insist-i-install-to-usrlocal-with-such-vehemence. That said, I...

Two notes (per #2013) 1. When this lesson is done, [the original errors lesson](https://github.com/exercism/go/tree/main/concepts/errors) should be edited to include a forward reference to this lesson for more details about errors....

I'm very much in favor of Markdown, and as I mention [elsewhere](https://github.com/antirez/lamernews/issues/6#issuecomment-2495826), it solves a few problems at once. Overall though I would go for [Redcarpet](https://github.com/tanoku/redcarpet) since it's faster and...

Ah, that is interesting. It may be another plugin interaction (though I don't use many) or maybe something to do with my format-options. On the other hand, if I remove...

I start with `tcqn1`, but changing those options doesn't seem to matter. I'll try with/without other plugins, but for now the only thing that works is to edit this plugin's...

I couldn't get `vundle-plugin-tester` to work at all, but I've found the problem by loading only this plugin and then playing with my `~/.vimrc`. It's not a plugin interaction. Something...

@blueyed ``` formatlistpat=^\s*\d\+[\]:.)}\t ]\s* Last set from /usr/local/Cellar/vim/7.4.488/share/vim/vim74/ftplugin.vim formatoptions=tcqn1 filetype=mkd Last set from ~/.vim/bundle/vim-markdown/ftdetect/mkd.vim indentexpr=GetMkdIndent() Last set from ~/.vim/bundle/vim-markdown/indent/mkd.vim comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:- Last set from /usr/local/Cellar/vim/7.4.488/share/vim/vim74/ftplugin.vim textwidth=79 Last set from ~/.vimrc ```...

@blueyed > Your problem is that you're missing this from the syntax file I'm confused: I just cloned the directory today, so why would I be missing those lines?

@blueyed Ah, I'm sorry, but no: since [my earlier post](https://github.com/plasticboy/vim-markdown/issues/126#issuecomment-55422939), I've given in and gone back to `syntax on`. I should have mentioned this, but didn't think of it. Apologies....

To stay this even more strongly, I think that [`:help ftdetect`](https://vimhelp.org/filetype.txt.html#ftdetect) implies that scripts should *not* wrap autocommands in an `augroup` in a `ftdetect` file. There have definitely been problems...