This is a simple extension for counting words in Markdown and plain text files. It can display the word count in the bottom status bar.
In addition to supporting languages that use spaces to separate words, it also supports languages that do not use spaces, such as CJK characters (Chinese, Korean, Japanese) and Emoji.
- Multi-language Support
- Count words, lines, characters, and characters with spaces
- Selection text count
Currently supports recognition of:
- Languages that use spaces to separate words (e.g., English)
- CJK characters, such as Chinese, Japanese, Korean
- Emoji
Currently supports counting of words, lines, characters, and characters with spaces.
By default, word count is shown in the status bar. All counts are shown in the tooltip that appears when you hover over the status bar item.
You can customize the status bar content via config markdown-word-count.statusBarCounts.
This extension supports counting selected text.
You can disable it via config markdown-word-count.selectionCount.
the following settings:
markdown-word-count.statusBarCounts
: customize the content shown in status bar.markdown-word-count.selectionCount
: enable/disable selection count feature.
// default settings.json
"markdown-word-count.statusBarCounts": {
"words": true,
"lines": false,
"characters": false,
"charactersWithSpaces": false
},
"markdown-word-count.selectionCount": false
Welcome open issue to the GitHub repo, if there are any feedback (problems with usage, find a bug, feature request, language support and so on).