馃挱 Support regex substitution command 路 Issue #2232 路 helix-edito... =================================================================== !https://github.com/helix-editor/helix/issues/2232#issuecomment-1228632218 Date: October 8, 2024 Support regex substitution command 路 Issue #2232 路 helix-editor/helix Support regex substitution, comparable to vim :s or VSCode search & replace. I propose supporting regex replacements for selection s, files/, and the workspace scopes + /. This could be acc... GitHub 路 github.com [1] Here is a really good vim substitute with regex capture groups, saving this one for a rainy day. ``` md * Reading 1: This is a title to a link * Reading 2: This is another title ``` `:%s/\v(: )(.+)$/\1\[\2\]\(` ``` md * Reading 1: [This is a title to a link]( * Reading 2: [This is another title]( ``` !!! note This post is a thought [2]. It's a short note that I make about someone else's content online #thoughts [3] References: [1]: https://github.com/helix-editor/helix/issues/2232#issuecomment-1228632218 [2]: /thoughts/ [3]: /tags/thoughts/