| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-10-01 | format: fix handling whitespaces after string node | Charles Brunet | |
| Fixes #15019 | |||
| 2025-09-24 | format: Fix indentation with parentheses | Charles Brunet | |
| - Split long expressions in () according to max line length - Partly revert d028502 . Fixes #14935. - Fixes #15032. | |||
| 2025-04-29 | Fix meson format with multi line parenthesized expressions | Will Ayd | |
| 2024-09-11 | Fix typos | spaette | |
| 2024-08-20 | mformat: A triple string with a ' in it cannot be simplified | Dylan Baker | |
| The following is valid meson: ```meson a = '''This string can't be simplified''' ``` which cannot be simplified because of the `'` in it, as ```meson a = 'This string can't be simplified' ``` Is invalid. Potentially we could convert that with escapes, but it seems reasonable to me to leave this, since it may be desirable to not have lots of escapes in a string. `'''I can't believe it's her's!'''` is much more readable than `'I can\'t believe it\'s her\'s!'`, for example. Closes: #13564 | |||
| 2024-08-20 | tests/format: Make the compare script more useful | Dylan Baker | |
| Now it will generate a diff of the expected value and what it actually got | |||
| 2024-04-08 | meson format command | Charles Brunet | |
