Michael Rienstra

Results 41 comments of Michael Rienstra

Should this be closed as "completed"? Or is it still open because it's not supported on X11 yet?

@reuseman, this should be closed, yeah?

Took a look at how [Markdown Preview Enhanced](https://shd101wyy.github.io/markdown-preview-enhanced/) is doing it. GitHub: https://github.com/shd101wyy/markdown-preview-enhanced See: https://github.com/shd101wyy/markdown-preview-enhanced/blob/f62bd03/src/preview-content-provider.ts#L601-L640 It's relying on`@shd101wyy/mume` to do the heavy lifting. More specifically: https://github.com/shd101wyy/mume/blob/d1904b9/src/webview.ts I cut that down...

VS Code handles this "natively" (as in, out of the box) with the `markdown.preview.scrollPreviewWithEditor` & `markdown.preview.scrollEditorWithPreview` settings. The majority of the code that underpins that behavior can be found in...

@djui, are you open to a PR for this? Tempted to work on it when I have time. Er, unless @apaatsio is hoping to do so, I don't want to...

This seems kind of trivial to do with either search and replace: `": "^` โž `": "` _(Regex flag off)_ `": "\^` โž `": "` _(Regex flag on)_ `(?

> Then I will add `^` to the two packages which do not have it @qcz, I think there has been a misunderstanding. I believe @tjx666 was proposing a new...

Comparison of some methods: https://stackblitz.com/edit/stackblitz-typescript-lrag9u?devToolsHeight=90&file=index.ts ```js const str = '๐Ÿ…-๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง-เฎจเฎฟ-๊น-่‘›๓ „€'; ``` ## naive, split ```js str.split(''); // (20) ["\ud83d", '\udc05', '-', '\ud83d', '\udc68', 'โ€', '\ud83d', '\udc69', 'โ€', '\ud83d', '\udc67', '-',...

Looks like this can be closed due to the merge of https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore/pull/362