Mike Roberts

Results 34 comments of Mike Roberts

Could you give an example of what you're trying to do?

Ahh I see. You can obviously use a `Repetition` to create a new extra which does this but there is no syntax at the moment, though it would be possible....

Ah yeah you're right, there is a docstring for it but I can't find it in the docs. Basically it's just another extra you can wrap around others, couple of...

I'm all in favour of this. The guiding principle of the last few changes I've made (star imports, rule loading functions, removing rdescripts) has been to cut down the volume...

Has anyone had a chance to try out `navigation.action_lines` (e.g. "select fifty seven by fifty nine")? I have implemented it for vscode, sublime, atom and RStudio but it should be...

I agree that having a custom language using made up words, while potentially more efficient, is a major barrier to entry that I think we could do without. I think...

I made a couple of somewhat hacky scripts in order to generate markdown table docs for the IDE and language commands, which can be found here: https://github.com/mrob95/caster/blob/doc_update/generator.py https://github.com/mrob95/caster/blob/doc_update/generator_apps.py It's fairly...

Ah, interesting, it looks like I can just do: ``` INSERT INTO queryables (name, property_path, property_wrapper) VALUES ('time', 'datetime', 'time'); ``` since datetime is already stored as a column as...

I've also noticed slow rendering with large graphs. Thanks for looking into it @itamarst. I haven't done any detailed profiling of it but another potentially unnecessary thing that `update_text` is...

I bisected this. On 0.7.7 running the above code succeeds, and looking at the searches table I can see that the `usecount` for the search is 2 as expected. On...