SublimeLinter-addon-goto-flash
Distraction free editing and jump visuals
Details
Installs
- Total 422
- Win 284
- Mac 87
- Linux 51
May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 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 | 1 | 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 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Hi 👋!
This is an UI addon for SublimeLinter.
It highlights the error you jump to when using the Goto commands. Well, okay. 🤹♂️🤹♀️.
Yeah. Read on. SublimeLinter has a some distraction free capabilities. There is a command to toggle the squiggles very quickly. Maybe bind it like so:
// You can toggle all highlights super-fast
{ "keys": ["ctrl+k", "ctrl+k"],
"command": "sublime_linter_toggle_highlights"
},
And there is also a setting “highlights.start_hidden” you can use. Refer to the original documentation for the possible values here.
Anyhow, back to this plugin, it will make this experience a bit more awesome.
Namely, it will temporarily jump out of the quiet mode while jumping around the errors
using the goto command or when you have the error panel open. And automatically enter quiet
mode again when you start editing again. (You can control this behavior via the jump_out_of_quiet
setting.)
Example
You configure to display phantoms for some errors in SublimeLinter.
"styles": [
{
...
"phantom": "{msg}"
}
],
You also set
"highlights.start_hidden": ["phantoms"],
in the main SublimeLinter settings.
With that applied, you already don't see any phantoms while you type. But you can
toggle them quickly using ctrl+k ctrl+k
. You just have squiggles while typing
and get the error detail per key-stroke. 🫣
Now again, this addon here comes into play. If you set jump_out_of_quiet
, it
will temporarily toggle the phantoms when you jump around the errors using e.g.
ctrl+k ctrl+n
and hide them again for you.
Anyhow, the idea is to configure phantoms and squiggles but to hide some or all of them while typing. 😏