Skip to content

Instantly share code, notes, and snippets.

@scarf005
Created December 23, 2021 10:10
Show Gist options
  • Save scarf005/a07fdee48ebf53b6837cd4ee2ae2ef17 to your computer and use it in GitHub Desktop.
Save scarf005/a07fdee48ebf53b6837cd4ee2ae2ef17 to your computer and use it in GitHub Desktop.
prettify python lambda into javascript style arrow function. does not changes actual symbol.
{
"symbolMasks.masks": [
{
"language": "python",
"patterns": [
{
"pattern": "(lambda)|(?<=lambda).?\\s?|(?<=lambda[^:]*):",
"replace": {
"lambda": { "text": "λ" },
": ": { "text": "() => " },
" ": { "text": "(" },
":": { "text": ") =>" }
}
}
]
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment