Search found 24 matches

by pintassilgo
29.03.2023 05:49
Forum: General - CudaText
Topic: List Find results with line context
Replies: 2
Views: 1244

List Find results with line context

One useful feature I miss from Notepad++ is that it can list Find results in a "list of lines", highlighting the searched terms. Then you can click each line from the list to go to the match. Is there a Cuda plugin for that? It's native in Np++, doesn't require a plugin. In Notepad++, it w...
by pintassilgo
18.03.2023 06:00
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

It's done, it was implemented. thanks!
by pintassilgo
13.03.2023 00:01
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

Something like: - Count instantly if document has up to X lines; - If higher, use a IdleTimer. Isn't good enough for a first release? Then it could be optimized in the future. Both numbers could be exposed as a pair of user options: max of lines to count instantly and time in ms for the timer when t...
by pintassilgo
11.03.2023 09:32
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

Kate, on the other hand, not only count chars correctly, it also displays the count of words in statusbar. But unlike the Scintilla-based ones, Kate count doesn't update instantly, I can see it waits for like half a second without change in the file to update, so it's clearly a decision made becaus...
by pintassilgo
11.03.2023 06:55
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

For me it's fine, thanks for agreeing in adding the feature. From the three editors I have here beside CudaText, SciTE and Notepad++ use Scintilla so the count is of bytes, not of chars. Kate, on the other hand, not only count chars correctly, it also displays the count of words in statusbar. But un...
by pintassilgo
10.03.2023 19:29
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

So far they told that, as I was expecting, it's not calculated by the app but by Scintilla, the underlying editing component. Other noted that the count in Notepad++ is not exactly the number of chars, but the number of bytes in file buffer, which has no cost to retrieve. This seems to be a simple a...
by pintassilgo
10.03.2023 15:55
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

Asked here: https://community.notepad-plus-plus.org ... char-count

Let's see if someone steps up to help.
by pintassilgo
10.03.2023 08:24
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

I'll try to ask.
by pintassilgo
10.03.2023 08:19
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

I guess it's provided by Scintilla lib, not something done directly by NP++ or SciTE, they just get the value.
by pintassilgo
10.03.2023 08:10
Forum: General - CudaText
Topic: Show total count of chars/words in statusbar
Replies: 23
Views: 7136

Now I repeated the same task on SciTE and it's so smooth as if the file is empty. I can't notice any slowness, not even the minimal. And it has chars counter. The content of statusbar, for reference: Line 53558, Column 19 | 1940435 Chars, 53562 Lines | 0 chars, 0 lines | LF (it means current | total...