| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | oni-php: Add PHP treesitter override | 8 days | 1 | -1/+8 | |
| | | |||||
| * | oni-php: Switch out ‘php-mode’ for ‘php-ts-mode’ | 8 days | 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. | ||||
| * | oni-php: Add command to enter expected operator | 2025-01-24 | 1 | -1/+19 | |
| | | | | | | The command either inserts a ‘.’ if point is next to, or inside, a string or inside a comment. Otherwise it'll insert the access operator ‘->’ instead. | ||||
| * | oni-php: Add snippet for test class | 2025-01-22 | 1 | -0/+15 | |
| | | |||||
| * | oni-php: Add support to add first use statement | 2025-01-22 | 1 | -3/+8 | |
| | | |||||
| * | Add snippet for PHP mode | 2025-01-13 | 1 | -0/+5 | |
| | | |||||
| * | oni-php: Enable subword-mode | 2024-12-30 | 1 | -1/+2 | |
| | | |||||
| * | oni-php: Warn me when I'm trying to use a non-existent class | 2024-12-30 | 1 | -3/+6 | |
| | | |||||
| * | oni-php: find-php-class: Only match namespace at ↵ | 2024-12-30 | 1 | -1/+1 | |
| | | | | | beginning of line | ||||
| * | Add snippet to add the namespace to a file | 2024-12-30 | 1 | -0/+5 | |
| | | |||||
| * | oni-php: Make sure the use script runs in the right ↵ | 2024-12-30 | 1 | -2/+3 | |
| | | | | | directory | ||||
| * | oni-php: Add command to add use statement | 2024-12-30 | 2 | -1/+39 | |
| | | |||||
| * | Enable yasnippets in PHP | 2024-12-24 | 1 | -1/+2 | |
| | | |||||
| * | Add PHP snippets for writing tests | 2024-12-24 | 2 | -0/+17 | |
| | | |||||
| * | Add PHP snippet for <?php header | 2024-12-23 | 1 | -0/+5 | |
| | | |||||
| * | Replace all Cask files with Eldev files | 2023-05-25 | 2 | -8/+13 | |
| | | | | | | | | | | I'm working on moving my build setup to my own laminar[1] instance. To do this I need to be able to package files up. It appears that I couldn't quite get Cask to work, and Eldev exists in the Guix[2] package repository. [1]: https://laminar.ryuslash.org/ [2]: https://guix.gnu.org/ | ||||
| * | Remove autoloads for snippet loading | 2021-12-01 | 1 | -3/+1 | |
| | | | | | | Loading ‘yasnippet’ shouldn't automatically load my package configuration. If my package configuration hasn't been loaded it shouldn't try to include my snippets. | ||||
| * | Remove all self-loading autoload cookies | 2021-11-23 | 1 | -5/+10 | |
| | | | | | | | | | The big downside of usuing these cookies to inject my configuration into the loading of a package is that it means that I can't load that package without my configuration anymore. This means that when I start ‘emacs -Q’ and then call ‘package-initialize’ it'll load my configuration as well. This makes debugging things very difficult. | ||||
| * | [oni-fci] Remove configuration | 2021-06-22 | 1 | -7/+3 | |
| | | | | | | ‘fci-mode’ has been completely superseded by the built-in ‘display-fill-column-indicator-mode’. | ||||
| * | Remove phpcbf, it doesn’t seem to exist anymore | 2021-02-06 | 1 | -3/+2 | |
| | | |||||
| * | Explicitly require hydra for configs that create hydras | 2020-09-09 | 1 | -1/+2 | |
| | | |||||
| * | Use ‘display-fill-column-indicator-mode’ if possible | 2020-09-07 | 1 | -2/+6 | |
| | | | | | | Fall back to ‘fci-mode’ if the function ‘display-fill-column-indicator-mode’ doesn’t exist. | ||||
| * | Remove dependency declarations from Cask files | 2020-03-20 | 1 | -11/+0 | |
| | | | | | | | The dependencies are also in the package files themselves and are the actual source of truth. The way I’ve reorganized the stages should mean that this isn’t necessary anymore. | ||||
| * | Add oni-hydra configuration, spruce up some hydras | 2020-03-05 | 1 | -2/+2 | |
| | | |||||
| * | Enable ‘auto-fill-mode’ for comments in most ↵ | 2019-12-10 | 1 | -1/+7 | |
| | | | | | | | | programming modes The ones that are already backed by a formatter, such as Java, Python and sh don’t need it. | ||||
| * | Change version format | 2019-09-04 | 1 | -1/+1 | |
| | | | | | | | | | | | | In order to support my tablet which seems to have a lower maximum integer value (I guess it’s 32-bit? I’m surprised) and can’t handle the version numbers I was using before. It would turn them into floating point numbers, which adds a ~.0~, this made it impossible to install any package. Any installations I have will need to reinstall all their oni packages so that the new version number is picked up, since the new version number will be lower than the old one. | ||||
