Daniel Hahler

Results 1440 comments of Daniel Hahler

See `:h `. It is used in a lot of plugins, so you may also want to grep your bundles and/or the Vim runtime dir. I don't have time currently...

The easiest approach would probably be to increase the buffer length, from 1000 bytes to maybe 64kB (65536). It would/could then still fail in the same way, but it's much...

Well, I think that dma is not creating the message, but only transports it. The bug is really with the app that hands it over to dma. Inserting newlines can...

Then breaking the line is better than rejecting the mail. Postfix has a line_length_limit option, with a default of 2048 (http://www.postfix.org/postconf.5.html): > Upon input, long lines are chopped up into...

The Postfix approach seems sensible. To me everything is better than rejecting the mail. > quoting RFC helps convince programmers change their code I agree. There could be a warning...

Since https://code.djangoproject.com/ticket/22260 got fixed by reverting the change to `db_type`'s behavior. Still, I think we should use a return value with `get_internal_type` that makes sense (AFAICS).

This is caused by an invalid entrypoint (no related to this package). For me (on Arch Linux) it is python-cli_helpers: ``` cat /usr/lib/python3.6/site-packages/cli_helpers-0.2.3-py3.6.egg-info/entry_points.txt 🐍? [distutils.commands] docs = tasks:docs lint =...

Fixed in cli_helpers: https://github.com/dbcli/cli_helpers/pull/29. Should get closed here I think.

My use case is some WIP test file that is used only locally. Since it matches the pattern of normal test files it will be included. I could add it...