Word count #10211
Replies: 5 comments
-
What about implementing this as an |
Beta Was this translation helpful? Give feedback.
-
We already have line/col information, but word count isn't as cheap to compute during editing since we'd need to rescan each time a change is made. |
Beta Was this translation helpful? Give feedback.
-
Would it be possible to track the delta in word count every time an edit is made? Something like if the edit introduces more whitespace sections, increase the word count by that number, and decrease it if it removes whitespace sections? I realize that it would be non-trivial to implement and therefore might not be the best way, but it might be theoretically possible without being too expensive to compute. |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
-
I also agree that having builtin feature would be nice. |
Beta Was this translation helpful? Give feedback.
-
In Vim,
g<C-g>
would showCol 8 of 274; Line 3 of 3; Word 6 of 52; Byte 35 of 302
in the bottom left corner. It would be nice if helix also has some functionality to count words.Beta Was this translation helpful? Give feedback.
All reactions