InteractiveCodeSearch.jl
InteractiveCodeSearch.jl copied to clipboard
Interactively search Julia code from terminal
Compat = "3.16, 4"
Great package. Everything works well with my setup except the live previewing feature (right hand side panel). I'm using Julia 1.7.2 on MacOS. The issue I'm getting with the preview...
I like to be able to trigger `@searchhistory` easily, either by typing `)` or by using `CTRL+r`.
I tried: ``` ] add InteractiveCodeSearch using InteractiveCodeSearch @search show ``` I get the following error: ``` ┌ Warning: Matcher peco not installed. │ See https://github.com/peco/peco for how to install...
This was the shortest change I had been able to come up with. It now downloads in any case but uses the systems peco if available. (Otherwise it uses the...
Using Windows 10, VSCode REPL Trying to invoke `@searchmethods 1` returns the following:  I'm not sure where the source paths for the results are obtained from, but they aren't...
`@search cos(1.0)` [RETURN] shows a rofi window with a single entry. Upon hitting return the rofi window disappears and I see the error: ```julia ERROR: BoundsError: attempt to access 1-element...
Fixes BoundsError when trying to open the found method by hitting the return key on Julia >= 1.9. Fixes #32 Solution by @jd-foster