Plugin "CSS AutoPrefixer" for SynWrite.
It allows to insert needed vendor prefixes into CSS code.
Uses Node.js library "Autoprefixer".
If selection is made (only normal selection supported) then only selection is changed,
otherwise entire file is changed.
Plugin has commands in SynWrite menu "Tools - Plugins".
Example
Such CSS code:
#wrapper {
border-radius: 1em;
transform: rotate(45deg)
}
will be changed to:
#wrapper {
border-radius: 1em;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg)
}
How to install
- Node.js required. Install it and add path to "node.exe" to PATH variable.
- Open plugin's zip-file in SynWrite, and confirm installation.
- Hotkey can be changed using command "Options - Advanced - Edit file SynPlugins.ini".
About
Author: Alexey T. (SynWrite)
License: MIT