Michael Davis

Results 841 comments of Michael Davis

I was thinking the same about it being noisy when writing `fun`s in Erlang https://github.com/erlang-ls/erlang_ls/issues/1344. It might be good to propose this upstream in rust-analyzer as well. The direct descendant...

I meant to respond to this in the pickers v2 PR but I must've forgotten. @pascalkuthe and I discussed it and to add context to what Pascal is saying above:...

I don't forsee us adding a trim-leading-whitespace feature so "rtrim"/"rstrip" seems unnecessary to me. If we want to be really clear let's call the command `:trim-trailing-whitespace` and alias it to...

Yeah I wonder if we really need a typable command for this given you can already select it with `%s[ \t]+$` (could be bound to a macro with #4709) and...

That's https://github.com/helix-editor/helix/discussions/10215

You might want to combine the changes in this PR and #11631 since the changes overlap and will conflict with each other if done in separate PRs To fix the...

For the themes that currently fail to pass this we can comment out the offending keys and link to the issue. They're basically discarded while loading so commenting them out...

I think this should be combined with a change like https://github.com/helix-editor/helix/pull/11093 that introduces `:move!`/`:mv!`, and only those `!` commands would create parent directories like `mkdir -p`. `:write`/`:w` is the same:...

Yeah sticky is only able to be cleared currently by escape: https://github.com/helix-editor/helix/blob/22a051408a467ff8b3e43457961d5497903dc7d0/helix-term/src/keymap.rs#L323-L329

If I remember correctly, iolists don't work well for websocket because iodata must be binaries: ```erl %% erlang.erl in the OTP codebase %% .. -type binary() :: . -type bitstring()...