Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Word Count #111

Open
andyesys opened this issue Aug 24, 2022 · 5 comments
Open

Word Count #111

andyesys opened this issue Aug 24, 2022 · 5 comments

Comments

@andyesys
Copy link

Using panwriter as a focused minimal writing tool is close to perfect. All I am missing is a way to count the words.

@mb21
Copy link
Owner

mb21 commented Aug 26, 2022

Thank! Yes, probably we should just at a small bottom bar that's shown whenever you hover over it or the top bar... there we could display such information without it getting too much in the way...

@aschoenebeck
Copy link

That would be great, thank you!

@bobbykjack
Copy link

@aschoenebeck For a very rough approximation, you can break out the console and:

document.body.innerText.length

for characters or:

document.body.innerText.split(" ").length

for words. Lots of edge cases that doesn't handle, but it does at least put you in the ballpark before copying + pasting into a different editor to get a real count!

@Moonbase59
Copy link

+1 for the word count feature request. (Maybe also characters?)

@AuroraMartell
Copy link

I'd like this very much too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants