TerminalPager.jl icon indicating copy to clipboard operation
TerminalPager.jl copied to clipboard

Pure Julia implementation of the command less

Results 11 TerminalPager.jl issues
Sort by recently updated
recently updated
newest added

[`AbbreviatedStackTraces.jl`](https://github.com/BioTurboNick/AbbreviatedStackTraces.jl) is a package which essentially shortens stack traces to "your own" code, relying on the (often correct) assumption that you are doing something wrong, not a bunch of julia...

It would be very useful for me if I could search for a value, for example **14** in a specific column only, because if I search for it globally I...

Steps to reproduce: ``` pager(rand(10^6, 10)) ``` and it takes 30 seconds to display. I am not sure if something can be done to fix it, but ideally large tables...

This is a general request but what I specifically mean is that if e.g. you do: ``` DataFrame(rand(100, 100), :auto) |> pager ``` that it would be possible that recipe...

I am not sure this is possible, but it would be extremely useful to have TerminalPager work *during* the execution of a slow command. That would allow one, for example,...

Would it be possible / acceptable to have an option to replace the regular Julia help mode by the pager mode? Or, if not, perhaps the rationale for why not...

As [suggested by Matthias](https://discourse.julialang.org/t/ann-terminalpager-jl-repl-inline-help-added/133131/36?u=patrickhaecker), the inline help (and therefore `@help`) should work on partial input to show only the methods which match the partial argument tuple. This should be done...

The inline help should have a configurable key binding the same way as the other keybindings are configurable. I currently don't plan to work on this one, as I do...

I notice that in the Julia REPL mode that ``TerminalPager`` blocks the automatic display of the figure being created. For example: ```julia pager> using GLMakie pager> image(a) # just shows...

Similar to #42: In the Fish Shell, you can press `Alt`+`p` and piping to the pager is append to the current command line. So in a useless use of `cat`:...