Michael

Results 297 comments of Michael

You could disable `break-word` again [just] inside tables. I assume the rule was made originally to keep people from typing `Aaaaaaaaaaaa...aaa` and breaking the site layout.

> 2. The package name is generic enough to potentially take more Sublime Text related syntax files. Are you thinking of moving the file patterns? That makes sense to me...

RE Original report: It's not immediately apparent from the screenshot, but Sublime is trying to pop the HEREDOCs from the stack LIFO. ```ruby func(

> While reviewing #1850 I noticed I never thought about languages that use keywords to terminate control structures (like `done` or `end` or `endwhile`). What about `keyword.control..end`? Does this mean...

- RE `captures: 0:`: Someone (not me) is very determined to convert all of these to `scope:`. - RE `comment:` mapping: I am pretty sure this is a product of...

```sql INSERT INTO my_table (foo, bar) VALUES (1, 'two') ``` The table is scoped as a function. ------ I'm finding that the biggest thing I miss from [my janky T-SQL...

Regression: Having a function in the `SELECT` breaks downstream highlighting. ```sql SELECT foo, COUNT(*) AS tally FROM bar WHERE 1 = 1 GROUP BY foo ```

Looking very good. I will probably now run this at work, rather than my own def. The current weird stuff: - [x] I can't seem to `UPDATE` after a CTE....

> Hmm, I thought I had covered named CTE columns with syntax tests and scoped them as `meta.column-name`. ```sql SELECT * FROM table_name AS t1 INNER JOIN (SELECT foo FROM...