Rome Formatter
SublimeText 3/4 plugin for Rome formatter
Details
Installs
- Total 162
- Win 71
- Mac 58
- Linux 33
Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Rome formatter integration for SublimeText 3 and 4
This repository contains SublimeText ¾ plugin for 🏛️ Rome code formatter.
Why you would want to use it? Because Prettier integration in Sublime is slooow and this one is Blazing fast ™️ 🏎️.
It will honor settings inside rome.conf
file, if it finds it.
How it works
There are 3 ways you can use it:
Newbie way
Open Edit
menu and select Format with Rome
. This will format current selection, or whole file if nothing is selected.
Pro way
Open command palette, type Rome
and select Rome: Format file or selection
. This will also format current selection, or whole file if nothing is selected.
Master way
Just enable format_on_save
option and let Rome format every file it can.
Configuration
Check out Settings...
-> Package Settings
-> Rome Formatter
:
{
// Should we format supported files on save
"format_on_save": false,
// Format on save only if rome.conf file was detected
"detect_config": true
}
detect_config will traverse up from current file or folder and try to find rome.json
file. If it finds it, it will allow format_on_save to do it's job. If not, meh, nothing will happen.
Keyboard shortcut
You can add a keyboard shortcut in your keymap, ex:
[
{"keys": ["ctrl+alt+f"], "command": "rome_format"}
]
Installation via Package Control
Open Sublime menu and navigate to :
Tools
-> Command Palette...
-> Package Control: Install Package
,
type Rome Formatter
and select it to complete the installation.
Requirements
Plugin itself has no dependencies, but you need to have Rome installed:
- Install Rome globally via:
npm i -g rome
- or locally in your project (recommended):
npm i -D rome
plugin will auto-detect if there's a local binary and use that and fallback to global install if nothing was found. So you can have different Rome versions for each project.
Windows
It looks like on Windows you need to have Visual C++ Redistributable installed, otherwise you will get an error like this:
Failed to exec Rome formatter 3221225781 b''
You can download it here.