Skip to content

Instantly share code, notes, and snippets.

@hex-ci
hex-ci / README.md
Last active April 13, 2020 06:11
VSCode support multiline tabs. 让 VSCode 支持多行 Tabs.
  1. Windows 系统下,workbench.desktop.main.css 文件位置: [用户目录]\AppData\Local\Programs\Microsoft VS Code\resources\app\out\vs\workbench
  2. Mac 系统下,workbench.desktop.main.css 文件位置: /Applications/Visual Studio Code.app/Contents/Resources/app/out/vs/workbench
@hex-ci
hex-ci / yield-to-async.js
Created July 23, 2021 08:09 — forked from pgherveou/yield-to-async.js
convert co/yield to to async/await
// https://astexplorer.net/#/gist/48d24982fceb3f258cc2dcd764fe8e38/937f48fc25443224a08bb20774a7d8868052770c
export default function ({types: t}) {
return {
visitor: {
ObjectMethod(path) {
if (path.node.generator) {
path.node.async = true
path.node.generator = false
}