Skip to content

Latest commit

 

History

History
48 lines (27 loc) · 730 Bytes

README.md

File metadata and controls

48 lines (27 loc) · 730 Bytes

🛠 VSCode Selection Transformer

This VSCode extension allows you to transform your selections via an evaluated javascript expression.

Simple


How to use

  • Make selection

  • CTRL/CMD + P

  • Choose Transform Selection

  • Enter expression, Press enter

You can access the current selection in the variable value and is a string.


Example:

value
  .split(" ")
  .map((x) => `"{x}"`)
  .join(", ");

Advanced


Extension Settings

-

Known Issues

-

Release Notes

1.0.0

Initial release