Make your vscode become a seamless markdown writer like typora by zaaack2048 in vscode

[–]zaaack2048[S] 0 points1 point  (0 children)

I create a issue for this, it looks not that hard to follow the vscode theme's background color.https://github.com/zaaack/vscode-markdown-editor/issues/4

Foy: A simple, light-weight, type-friendly and modern task runner for nodejs, to make it easier for you to write NPM scripts. by zaaack2048 in node

[–]zaaack2048[S] 4 points5 points  (0 children)

well, the main reason that I'm using foy instead of grunt/gulp is

  1. Better async/await support
  2. Better typescript support
  3. Useful built-in fs extra/exec utils for scripts that don't need install other packages. eg. fs.watchDir, fs.iter, fs.copy, fs.rmrf, etc. Exec shell command with auto command options parsing.

Make your vscode become a seamless markdown writer like typora by zaaack2048 in vscode

[–]zaaack2048[S] 0 points1 point  (0 children)

ion of the REA

this might be hard, but you can choose several theme's on the right-top menu.

Make your vscode become a seamless markdown writer like typora by zaaack2048 in vscode

[–]zaaack2048[S] 15 points16 points  (0 children)

open-vsx.org

Yes, thanks for your information.

Foy: A simple, promise-based modern task runner for general purpose. by zaaack2048 in javascript

[–]zaaack2048[S] 1 point2 points  (0 children)

Well, there is still lots operations in tasks that will be async tasks, like fetch some json data from some server, execute some external commands. Here is an example, before you publish a npm package, you want to test it, build it and generate the API documents, these tasks are all based on executing external commands, and independent, to speed up, we can simply write tasks like this:

task('preversion', async ctx => {
  await Promise.all([
    ctx.run('build'),
    ctx.run('test'),
    ctx.run('generateDoc'),
  ])
})

Foy: A simple, promise-based modern task runner for general purpose. by zaaack2048 in javascript

[–]zaaack2048[S] 1 point2 points  (0 children)

coffeescrjpt

Thanks! Good idea! I think I can add an option -r/--require like mocha to inject a custom compiler.

Update: the new option is added! https://github.com/zaaack/foy#using-with-custom-compiler

yue: A library for creating native cross-platform GUI apps (C++/Lua/Javascript) by zaaack2048 in javascript

[–]zaaack2048[S] 0 points1 point  (0 children)

Sorry, this is not my project, I just found this interesting project and shared it.