A tiny Sublime Text plugin that adds a compact word count to the status bar.
Example:
📝36 words
It automatically updates as you type and shows the word count for the selection when text is highlighted, or the entire file when nothing is selected.
- 📝 Compact status bar display:
📝36 words - ✂️ Selection-aware: shows word count for highlighted text
- ⚡ Live updates while typing
- 🪶 Lightweight and fast (throttled updates)
- 🧩 No UI clutter — keeps Sublime’s native line/character stats intact
- Press
Ctrl+Shift+P - Select Package Control: Install Package
- Search for WordCountStatus
- Press Enter
- Open Sublime → Preferences → Browse Packages…
- Create a folder named
WordCountStatus - Copy
word_count_status.pyinto that folder - Restart Sublime Text
- Counts words using a simple, reliable pattern
- If text is selected → counts selection
- If nothing selected → counts entire file
- Updates automatically on:
- typing
- selection change
- file load/save
- tab switch
You can disable the word count display.
- Open Preferences → Settings
- Add the following to your User settings (right panel):
{
"word_count_status_enabled": false
}