repl-utilities
repl-utilities copied to clipboard
Ease common tasks at the REPL.
https://github.com/m-n/repl-utilities/blob/e0de9c92e774f77cab1a4cd92e2ac922ac3a807e/repl-utilities.lisp#L273-L275 Usage of mixed spaces and tabs causes misindentation on GitHub.
It might be nice to add an option to do output similar to https://github.com/Shinmera/trivial-benchmark/ to `rig`, and also add a shorthand for the common case of benchmarking the same code...
It would probably be nice to group undocumented symbol/type combos by type in `readme` similar to how `summary` now works, and probably to enforce pretty printing during both (for the...
With the exception of printing the package and asdf docstrings in README, our docstring printers find docstrings by doing: ``` (cl:documentation symbol argument) ``` This does not pick up all...
I would like to use `dev` as a general replacement for calling `in-package` at the REPL, but it seems that `dev` always attempts to load the system, even if the...
Often I find myself wondering what package defines a symbol. `symbol-package` can be used for this, of course, but I feel like it would be handy if `repl-utilities:doc` would show...