Nicolas Knoebber

Results 5 issues of Nicolas Knoebber

`go install` might not put the binary in the user's `$PATH`. Also, should add AUR/Brew packages.

It doesn't really work - might consider using different CLI framework.

Make the following work: ``` $ dot init ~/test.txt Initialized as "test" $ dotfile diff ~/test.txt ```

Diff currently it shows the full file. It should be smarter and only show areas that change while still providing enough context to know where the changes are.

Reproduction: ``` >>> from elasticsearch_dsl import Search >>> search_with_post_filter = Search(index='product').post_filter('terms', categories=['B']) >>> search_with_post_filter.count() 2818 >>> search_with_post_filter.execute() >>> search_with_post_filter.count() 1 ``` The first `count()` call does a normal count request,...

Category: Bug
Priority: Medium