Eric Hodel
Eric Hodel
RDoc's TomDoc support allows rdoc-style inline markup like: ``` *bold* _italic_ +code+ longer code expression ``` It also has a note saying "you should not depend on it". I would...
raspell contains memory leaks in `list_misspelled` and `correct_lines` due to not using `rb_ensure` to call `delete_aspell_document_checker` and free the checker. In `list_misspelled`, if an exception is railed from `rb_yield` or...
In `correct_file`, if IO#write raises an exception IO#close will not be called, leaking the file descriptor. `rb_ensure()` should be used to ensure the file descriptor is closed regardless of exceptions.
This adds `atuin stats --filter-mode` which takes the same options as `atuin search --filter-mode`. It allows filtering `atuin stats` output. To accomplish this `Database::list()` now has an optional range argument...