| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Change build output directory | 24 hours | 1 | -1/+1 | |
| | | | | | | | Put everything in public/pakages so that at a later date I can add a project site along with the packages. This change also makes it easier for me to change my mind about where the packages land. | ||||
| * | oni-php: Add dependency on php-mode | 30 hours | 1 | -2/+2 | |
| | | | | | | I removed it when I was experimenting with php-ts-mode, but that isn't yet what I'd like it to be, so I'm back to using php-mode for now. | ||||
| * | GNUmakefile: Update package recipes | 30 hours | 2 | -18/+4 | |
| | | | | | | These packages don't have snippets anymore and therefore aren't multi-file packages anymore. | ||||
| * | oni-yasnippet: Move all snippets to ‘oni-yasnippet’ | 2026-05-28 | 25 | -169/+0 | |
| | | | | | | There is no real point in having them all separate. Having them all in a single place makes them much easier to manage. | ||||
| * | oni-php: Add BelongsTo type comment for return types | 2026-05-21 | 1 | -1/+13 | |
| | | |||||
| * | oni-php: Remove ggtags dependency | 2026-05-15 | 1 | -3/+2 | |
| | | | | | Using dumb-jump instead | ||||
| * | oni-php: Add phpstan-ignore snippet | 2026-05-14 | 1 | -0/+5 | |
| | | |||||
| * | oni-php: Add corfu setup | 2026-05-14 | 1 | -2/+3 | |
| | | |||||
| * | oni-php: Remove company | 2026-05-14 | 1 | -7/+2 | |
| | | |||||
| * | oni-php: Add command to ignore the error at point | 2026-05-08 | 1 | -1/+22 | |
| | | |||||
| * | oni-php: Add dabbrev setting | 2026-05-05 | 1 | -1/+6 | |
| | | |||||
| * | oni-php: oni-php-grep-symbol: If region is active, grep ↵ | 2026-05-05 | 1 | -1/+8 | |
| | | | | | that instead | ||||
| * | oni-php: Update some snippets | 2026-05-05 | 3 | -0/+10 | |
| | | |||||
| * | oni-php: Fix up inserting ‘->’ vs ‘::’ | 2026-04-13 | 1 | -5/+4 | |
| | | | | | | When we're looking at a ‘)’ it should be ‘->’ since we can't return a static class in that case. | ||||
| * | oni-php: Add auto-insert template for .php files | 2026-04-07 | 2 | -8/+33 | |
| | | |||||
| * | oni-php: ‘oni-php-comment-dwim’: Add ‘@use’ template | 2026-04-07 | 1 | -8/+25 | |
| | | |||||
| * | oni-php: ‘oni-php-insert-dot-dwim’: Improve ↵ | 2026-04-07 | 1 | -1/+2 | |
| | | | | | detection ‘::’ vs ‘->’ | ||||
| * | oni-php: oni-php-insert-dot-dwim: Add ‘::’ operator | 2026-04-06 | 1 | -5/+21 | |
| | | |||||
| * | oni-php: Bring back ‘oni-php-comment-dwim’ | 2026-04-01 | 1 | -14/+14 | |
| | | |||||
| * | oni-php: Add require for ‘map’ | 2026-03-27 | 1 | -1/+2 | |
| | | | | | Hopefully this helps to make sure that ‘(setf (map-elt))’ will work. | ||||
| * | oni-php: Remove php-ts-mode: It's not quite ready | 2026-03-27 | 1 | -26/+25 | |
| | | | | | | | Rainbow delimiters mode breaks with large annotations. Functions work slightly differently, so integrations don't work as well. Navigation is unpleasantly different. | ||||
| * | Revert "oni-php: Add PHP treesitter override" | 2026-03-27 | 1 | -8/+1 | |
| | | | | | This reverts commit 448b78d47b0a18239f00526772b4a660be01363c. | ||||
| * | oni-php: Simplify ‘oni-php-add-use’ | 2026-03-26 | 1 | -2/+2 | |
| | | |||||
| * | oni-php: Add command to search for symbol at point, add ↵ | 2026-03-26 | 1 | -0/+10 | |
| | | | | | keybindings | ||||
| * | oni-php: Add PHP treesitter override | 2026-03-16 | 1 | -1/+8 | |
| | | |||||
| * | oni-php: Switch out ‘php-mode’ for ‘php-ts-mode’ | 2026-03-16 | 2 | -38/+40 | |
| | | |||||
| * | oni-php: Add some snippets | 2026-03-10 | 4 | -0/+25 | |
| | | |||||
| * | find-php-class: Ignore cdk.out directory | 2026-03-09 | 1 | -1/+4 | |
| | | | | | | This directory is large and slows down the find operation AND causes old matches to show up. | ||||
| * | oni-php: oni-php-comment-dwim: Require inactive region | 2026-03-09 | 1 | -1/+2 | |
| | | | | | | If the region is active, don't try to be smart about what to insert, just do the normal ‘comment-dwim’. | ||||
| * | oni-php: ‘oni-php-add-use’: Search for existing use ↵ | 2026-02-09 | 1 | -2/+2 | |
| | | | | | | | | | more strictly Before searching for ‘App\Models\Promotion’ would also match ‘App\Models\PromotionBulkImport’ and not add the use, but by searching for ‘use App\Models\Promotion;’ we ensure that we don't accidentally match a substring. | ||||
| * | oni-php/snippets/test-comment: Update test method annotation | 2026-02-09 | 1 | -1/+1 | |
| | | | | | We don't use comments anymore, but annotations instead. | ||||
| * | oni-php/snippets/test-class: Remove WithFaker | 2026-02-09 | 1 | -2/+1 | |
| | | | | | We can use ‘$this->faker()’ instead. | ||||
| * | oni-php/snippets/namespace: Don't capitalize already ↵ | 2026-02-09 | 1 | -1/+5 | |
| | | | | | | | | capitalized If a part of the directory tree is already capitalized a certain way, don't capitalize it. | ||||
| * | oni-php: Add conditions to expanding short snippets | 2026-01-08 | 4 | -1/+13 | |
| | | |||||
| * | oni-php: Remove unused snippet | 2026-01-08 | 1 | -8/+0 | |
| | | |||||
| * | oni-php: Add rainbow-identifiers mode | 2025-12-22 | 1 | -2/+11 | |
| | | |||||
| * | oni-php: Add snippets | 2025-12-10 | 4 | -2/+26 | |
| | | |||||
| * | oni-php: Add snippets | 2025-05-20 | 2 | -0/+12 | |
| | | |||||
| * | oni-php: Change key of test-comment snippet to @t | 2025-05-20 | 1 | -1/+1 | |
| | | |||||
| * | oni-php: Add auto-insert template for Laravel test files | 2025-04-16 | 1 | -1/+26 | |
| | | |||||
| * | oni-php: Add logger-info snippet | 2025-04-10 | 1 | -0/+5 | |
| | | |||||
| * | oni-php: Add more snippets | 2025-04-07 | 2 | -0/+13 | |
| | | |||||
| * | oni-php: Swap electric-pair-mode for smartparens | 2025-04-07 | 1 | -2/+2 | |
| | | |||||
| * | oni-php: Make sure imports aren't duplicated | 2025-04-07 | 1 | -5/+6 | |
| | | |||||
| * | oni-php: Fix casts snippet | 2025-04-07 | 1 | -1/+1 | |
| | | |||||
| * | oni-php: Add ‘rainbow-delimiters-mode’ | 2025-04-07 | 1 | -3/+4 | |
| | | |||||
| * | oni-php: Make ‘oni-php-comment-dwim’ work with classes | 2025-04-07 | 1 | -2/+3 | |
| | | |||||
| * | Add strict-types snippet to PHP | 2025-04-07 | 1 | -0/+5 | |
| | | |||||
| * | Add casts snippet to PHP | 2025-04-07 | 1 | -0/+7 | |
| | | |||||
| * | oni-php: Add function that makes ‘comment-dwim’ add ↵ | 2025-02-11 | 1 | -1/+24 | |
| | | | | | | | | | doc comments This checks to see if point is right before a function and if so adds a documentation comment. Otherwise it calls to the original ‘comment-dwim’ to do the right thing for that particular place. | ||||
