From 138f58310237fe96c3acdfa2b9321f1eb2e39862 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 27 Nov 2015 09:45:00 -0600 Subject: [PATCH] Add Display Word Count Stats as a vim til. --- README.md | 1 + vim/display-word-count-stats.md | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 vim/display-word-count-stats.md diff --git a/README.md b/README.md index 276c64a..90bb09f 100644 --- a/README.md +++ b/README.md @@ -265,6 +265,7 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Delete Every Other Line](vim/delete-every-other-line.md) - [Delete Lines That Match A Pattern](vim/delete-lines-that-match-a-pattern.md) - [Deleting Directories Of Files From netrw](vim/deleting-directories-of-files-from-netrw.md) +- [Display Word Count Stats](vim/display-word-count-stats.md) - [Edges Of The Selection](vim/edges-of-the-selection.md) - [End Of The Word](vim/end-of-the-word.md) - [Filter Lines Through An External Program](vim/filter-lines-through-an-external-program.md) diff --git a/vim/display-word-count-stats.md b/vim/display-word-count-stats.md new file mode 100644 index 0000000..207afcd --- /dev/null +++ b/vim/display-word-count-stats.md @@ -0,0 +1,12 @@ +# Display Word Count Stats + +You can display counts for the current file including line count, word +count, and byte count by hitting `g CTRL-g`. This also displays the line, +word, and byte that your cursor is currently at. The output looks something +like the following: + +``` +Col 1 of 0; Line 108 of 337; Word 397 of 1451; Byte 4571 of 18077 +``` + +See `:h 12.5` for more details.