A VS Code Extension that shows the user how many characters they have left to type before reaching the line limit.
Tired of guessing how many more characters you can type before your formatter decides its time to wrap to the next line? What about those hefty rulers that seem out of place? Wouldn’t it be nice to have a visual indicator as you type?
This is exactly what Line Width Indicator does!
It simply places a counter at the end of each line that indicates how many characters you have left before you reach a settings configurable value.
Line Width Indicator is also Open Source under MIT License. Visit the repository and feel free to contribute!
Currently the indicator is shown and updates as you type with predefined colors that can be adjusted in the settings. You can also adjust which languages are affected and the maximum threshold value that your formatter allows.
None 😋
You can add the following settings:
LWI.excludedLanguages
: An array of languages identifiers for which you wish not to use the ‘Line Width Indicator’ extension.LWI.breakpoints
: The counter will change to the respective color when its count is below that column’s value.LWI.ignoreComment
: A comment that is added to preserve the current line formatting (no wrapping). Depending on your formatter, this will differ.LWI.style.margin
: The space between the text being typed and LWI counter.LWI.style.fontWeight
: The counter’s thickness (from 100 to 900).LWI.style.fontStyle
: The counter’s style (normal, italics, or oblique/slanted).LWI.style.backgroundColor
: The counter’s color is added in LWI.breakpoints
and this adds a contrasting background color.ctrl+shift+i
: Enable/Disable LWI (on documents with supported languages)ctrl+shift+/
: Add/Remove Format Ignore Comment. E.g. “// prettier-ignore”None… yet
Core functionality is now complete!
More work will be added in the very near future - Stay tuned.
See the Change Log for more in depth details.
Enjoy!