1
abkcode
5y

Thinking of developing sublime plugin that would convert font-awesome 4 icons to 5. The plugin will search for all files with configured extensions and replace the icon classnames. Eg <i class="fa fa-cab"></i> will become <i class="fas fa-taxi"></i>. It wont work for inproper spacing and dynamic icons.
Is there anything already developed?

Comments
  • 0
    @irene 2 classes for same icon increases css filesize.
  • 2
    Doesnt it seem overkill to develop a plugin that is basically a project wide replace and will only be used once and then deinstalled?
  • 2
    Make a huge regex and post it online. :D
  • 0
    What's the plugin for when I can just search for strings and replace them in like 10 seconds?
  • 0
    @hashedram but more than 100 icon names are changed. So need to do it 100 times
  • 1
    @Marl3x ya plugin won't be useful for people using other editors. I ll write a simple python script.
Add Comment