Andri Möll

Results 284 comments of Andri Möll

I think the one-line version of `-` used to work at some point, but got lost somewhere. Here's my patch for multiline `-`: ```vim syn region pugJavascriptBlock start="^\z(\s*\)-\s*$" end="^\%(\z1\s\|\s*$\)\@!" contains=@htmlJavascript...

I'm fiddling in the dark as I can't be bothered to read `:help syntax`, but here's my temporary patch for oneliners: ```vim syntax region pugJavascriptLine start=/^\s*-/ end=/$/ contains=@htmlJavascript ```

+1 Noticed this while reading the code immediately. I don't believe single quotes are to be escaped _inside_ an hstore string. Escaping single's is the concern of the thing outside...

Stumbled upon the same problem with the `master` version. For me it seems to be triggered merely by the often-suggested balancing statement (below). My first guess is it triggers if...

This continues to be an issue with Ledger v3.3.1-20230303. One workaround that could also work for @pickfire in https://github.com/ledger/ledger/issues/2051 is to add a tag to those virtual assertions: ``` 2017-01-01...

Well, I'd say API global consistency and conventions are most important and debug workarounds are second to that. In JavaScript that would be `toString` (and `toJSON` and `parse`, but that...

For those looking for an example on how to connect to the database and possibly populate it with a schema query in one go: ```haskell import qualified System.Posix.Files as File...

I'd also say local paths should have `./` prepended to them to distinguish them from modules in `node_modules`.

This seems to come from the difference on how Node resolves dependencies (searching ancestor directories) and how Glue doesn't.

Oh, I didn't remember I reported this 5 years ago. Anyways, I've tracked this down to the https://github.com/cakebaker/scss-syntax.vim/blob/master/ftdetect/scss.vim#L2 line: ``` au BufEnter *.scss :syntax sync fromstart ``` Given a long...