Results 248 issues of evandrocoan

This pops sometimes when closing views. ``` Traceback (most recent call last): File "D:\SublimeText\sublime_plugin.py", line 389, in run_callback expr() File "D:\SublimeText\sublime_plugin.py", line 452, in run_callback('on_close', callback, lambda: callback.on_close(v)) File "D:\SublimeText\Data\Packages\Clickable...

### How to apply a syntax scope for the URL links? This is very useful to configure the `Sublime Text` spellchecking to not misspell the URL links.

### Exception in thread Thread-4 at `Sublime Text` start up This keeps popping up every time I open sublime text. Why? ``` Exception in thread Thread-4: Traceback (most recent call...

The page is not publicaly editable: https://github.com/google/diff-match-patch/wiki/Line-or-Word-Diffs ```python import textwrap import diff_match_patch class DiffMatchPatch(diff_match_patch.diff_match_patch): def diff_prettyText(self, diffs): """Convert a diff array into a pretty Text report. Args: diffs: Array of...

https://lark-parser.readthedocs.io/en/latest/recipes/ ![image](https://user-images.githubusercontent.com/5332158/69010083-6b3af300-093a-11ea-9ead-0ddb74b59b39.png) The recipe 2, is ok as it uses the lexer callback. On this commit https://github.com/lark-parser/lark/commit/1815bd7fbda932933fed604579e955a8c4d7c021 I see you added `# TODO Deprecate lexer_callbacks?` Why remove this feature? Well...

discussion

Related to: Remove timer control submenu #63 ![image](https://user-images.githubusercontent.com/5332158/89059473-9e41dd00-d337-11ea-990d-999456214f58.png) It is quite cumbersome to have to keep focusing the submenu to restart the timer. There is no reason to not have...

``` > mocha plugin √ should work as a remarkable plugin (110ms) options: custom functions: √ should allow a custom `strip` function to strip words from heading text: √ should...

I am trying to fix: 1. https://github.com/python-rope/rope/issues/234 you can even tell rope not to create .ropeproject folder 1. https://github.com/palantir/python-language-server/issues/230 Maybe we should prevent creating a .ropeproject/config.py By using `get_no_project()` instead...

enhancement
help wanted

```cpp #include #include "tinyformat.h" void fun_void_void(){}; int main(void) { std::cout

fix #68 - Cannot print function pointer ```cpp #include #include "tinyformat.h" struct test_debugger { void var() {} }; void fun_void_void(){}; void fun_void_double(double d){}; double fun_double_double(double d){return d;} int main(void) {...