Evan Sangaline

Results 38 comments of Evan Sangaline

Yeah, the permissions list needs to be cleaned up to fix those warnings. Are you certain that the extension doesn't run when you load it in Firefox? Those manifest errors...

This is a great question, and it's definitely something that we've been thinking about quite a bit. The philosophy of the project is heavily centered around the idea of things...

This is a crude workaround, but if you set ```emacs-lisp (setq tree-sitter-hl-use-font-lock-keywords nil) ``` then you'll bypass the logic in `tree-sitter-hl--minimize-font-lock-keywords` that causes the error. Highlighting works correctly after that....

A temporary workaround for anybody getting bitten by this is to change ```python column = line_len if column is None else column ``` in `jedi/api/helpers.validate_line_column()` to this: ```python column =...

Is there any specific information that I could provide that would be helpful? The Python version is 3.6.7 and the neovim version information is: ``` NVIM v0.4.3 Build type: Release...

@chemzqm Did you have any luck with reproducing given @naquad's instructions? Even if you can't reproduce it, would it be possible to cap the column at the length of the...

This isn't supported by the current API, but adding an `-l/--latest` option seems like a good feature request. In the meantime, you might be interested in [scrapy-wayback-machine](https://github.com/sangaline/scrapy-wayback-machine). That project provides...

Thanks! The core logic of the scraper comes from a sister project called [scrapy-wayback-machine](https://github.com/sangaline/scrapy-wayback-machine). If you're familiar with Scrapy and Python, then that project can be used to build custom...

This isn't supported by the current API, but it's a good feature suggestion.

Yes, they are sorted based on weight. If you would like to parse the `user-agents.json.gz` file directly, then you can safely assume that they are sorted by decreasing weight. The...