Provides a real-time Word Count and character count in the status-bar for Sublime Text. See: http://www.sublimetext.com/
Count words and/or characters on document or in selections. By default, whitespace is not included in the character count.
The minimal word length is 1 and does not count digits.
An estimated reading time is now appended to the end of the word count.
Zipped file:
- Locate the Packages directory for Sublime Text.
- Download the zipped contents of this repository into Packages.
- Unzip the zipped file. It will create a new directory in Packages.
- Re-start Sublime Text.
Cloned files:
- Locate the Packages directory for Sublime Text.
- In the Packages directory, create a sub-directory called WordCount.
- Clone the contents of this repository to your new WordCount folder.
- Re-start Sublime Text.
Located under Sublime Text>Preferences>Package Settings>Settings — User (You probably need to copy the default settings from the uneditable Sublime Text>Preferences>Package Settings>Settings — Default)
-
enable_live_count
: trueAllows to control if the live word counter is enabled. Otherwise will be enabled for selections only.
-
enable_readtime
: falseAllows you to control if the estimated reading time is enabled. Reading time is only displayed when there is a time > 1s.
-
readtime_wpm
: 200Sets the WPM to calculate the Estimated Reading Time for the file.
-
whitelist_syntaxes
: []An array of syntax names that WordCount should run on. Example: ["Plain text", "Markdown"] If the array is empty, like it is by default, WordCount will run on any syntax.
-
blacklist_syntaxes
: []An array of syntax names that WordCount should not run on. Example: ["Plain text", "Markdown"] If the array is empty, like it is by default, WordCount will run on any syntax.
-
char_ignore_whitespace
: trueWhether to skip whitespace for the character count.
-
enable_line_word_count
: falseDisplay the count of words found on current line.
-
enable_line_char_count
: falseDisplay the count of characters found on current line.
-
enable_count_lines
: falseDisplay the number of lines in file
-
enable_count_chars
: falseDisplay the number of characters in file
-
enable_count_pages
: trueDisplay the number of pages in file
-
page_count_mode_count_words
: trueSets the page count mode to words per page
-
words_per_page
: 300Sets the number of words per page used to calculate number of pages
-
word_regexp
: ""Word Regular expression. Defaults empty, an internal regular expression is used. If the portion of text matches this RegExp then the word is counted.
-
word_split
: ""Split portions of text to test later as words with a Regular expression. Defaults to String.split() with no arguments, means that content will trim() and empty values (all whitespaces) are not used. In case of containing some value different than empty, the return of "re.findall" will be used.
-
split
: {}Remove regex patterns by syntax. Use lowercase for the syntax names. Example to ignore all tags, including comments, from HTML: ``` "strip": { "html": [ "<[^>]*>" ] } ```
- The main loop inspired by sublimelint https://github.com/lunixbochs/sublimelint
- The count inspired by the original WordCount plugin http://code.google.com/p/sublime-text-community-packages/source/browse/#svn%2Ftrunk%2FWordCount committed by mindfiresoftware
- Liam Cain
- Lee Grey
- Hawken Rives
- Yaw Anokwa
- James Brooks
- Antony Male
- Alex Galonsky
- RikkiMongoose
- ChrisJefferson
- Harry Ng. (From Word Count Tool)
- MangleKuo
- Nick Cody
- Amanda Neumann