Stephan Badragan

Results 33 comments of Stephan Badragan
trafficstars

I guess something like `--glob` from `ripgrep` would be ideal... I believe that ripgrep is also written in rust, so maybe it uses a common crate for the glob stuff...

yep, it uses this one: https://crates.io/crates/globset

might be a workaround for some cases. This worked for me: ```ts cy.intercept('/something/**', (req) => { // redirect to local dev server const url = new URL(req.url) url.hostname = Cypress.env('dev_host')...

Just an FYI that I encountered the same problem with grug-far preview recently and ended up working around it by using `bdelete` instead. Don't know too much about oil (just...

@nanozuki I think they are referring to `:Tabby jump_to_tab`. I love the feature, but am having the same issue where it's sometimes using even symbols: Would be amazing if you...

Oh I see, currently it's using first unused letter of tab name, then alphabet: https://github.com/nanozuki/tabby.nvim/blob/b3affa6db7eab80fca2a2db5b73b473144507039/lua/tabby/feature/tab_jumper.lua#L26 which is neat, but agree with @comfysage that home row would be nice.

Note, in case it helps debug the issue, this works as a workaround but has the side effect of cursor flickering if calculating folds for lots of lines: ``` local...

I've also tried using `vim._foldupdate(win, start, end)` as a workaround but it seems to do nothing...