MarcMush

Results 58 comments of MarcMush

Julia uses 4-spaces indexing as standard

Similar problem, I wanted to have superfluous brackets in red but no rainbow brackets, this is my solution : ```julia using OhMyREPL let OPR = OhMyREPL.Passes.RainbowBrackets OhMyREPL.enable_pass!("RainbowBrackets", false) # disable...

Waiting for a proper fix, I added this to my startup.jl file: it enables Ctrl+V as the “clipboard()” paste (“normal” paste is Ctrl+Shift+V for me): (discussed in [discourse](https://discourse.julialang.org/t/pasting-long-lines-into-the-repl-takes-too-long-in-win10/59995/17)) ```julia using...

related https://github.com/JuliaLang/julia/issues/15787

I really feel this should be added to OhMyREPL (maybe with another keybind, and only for windows users) or, alternatively, fix it the same way it has been in julia...

basically instant in WSL, even with OhMyREPL for 5k characters ! 🎉 (I updated https://github.com/KristofferC/OhMyREPL.jl/issues/239#issue-815616261) I tested with 1.7.0-beta4 for both windows and wsl

...but only in Windows Terminal, in the crappy default terminal it takes about 4 seconds (for the test in #239)

@KristofferC is this something we want ? (I would say yes)

it is not documented by I found this feature by chance: you can add the argument `offset`: ```julia julia> p1 = Progress(10,1,"a"; offset=2); julia> p2 = Progress(10,1,"b"; offset=1); julia> for...

it has been in progress for a long time, but not very active, see #157 if you want to use what I wrote so far (it should be working fine),...