plylrnsdy
plylrnsdy
You might need this
This is my fault. I should not use `git push -f`. :sweat:
There is a test file to look result of REPL: ```javascript // ========== Base Infomations ========== // Current Node.js version process.version; // Current Work Dictionary process.cwd(); // ========== Modules Import...
```javascript let promises = [ Promise.resolve(1), Promise.reject('dada'), Promise.resolve(3) ] (async () => { try { let results = await Promise.all(promises); console.log(results.join(',')) } catch(ex) { // `catch` need following the right...
I think the extension can use child process to create a new Node process as REPL with user's Node.js, so that we can use Node.js which the version user had.
需要讨论一下显示位置 - 使用一个浮窗渲染当前整个笔记的 markmap 视图 - 新开个 Tab 渲染当前整个笔记的 markmap 视图 - 渲染 markmap 多行代码块
新增插件 [plugin-markmap](https://github.com/typora-community-plugin/typora-plugin-markmap) 目前仅支持代码块
主要是原本 Typora 就没这个功能😂 得想想怎么实现
> 有一个想法:点击当前页的关闭,相当于点击了切到近邻左边的标签,再把右边的标签面关闭,这样应该可以实现,不知道效果会不会丝滑。 现在可以关闭当前 Tab,但是只有一个 Tab 时不能关闭当前 Tab。 更新在 v2.0.0-beta.37 中
You can think about what you actually want to do: 1. run scripts automatically (it will be a simple start) 2. manage source control (it is a bigger task)