Search found 23 matches
- Mon Mar 16, 2026 2:21 pm
- Forum: General
- Topic: Pressing up/down with word wrap ON does not behave as expected (9.9.4)
- Replies: 2
- Views: 1451
Re: Pressing up/down with word wrap ON does not behave as expected (9.9.4)
Thank you! I've been using the new version almost the whole day and haven't hit a cursor problem.
- Wed Mar 04, 2026 10:23 pm
- Forum: General
- Topic: Pressing up/down with word wrap ON does not behave as expected (9.9.4)
- Replies: 2
- Views: 1451
Pressing up/down with word wrap ON does not behave as expected (9.9.4)
Hello,
I'm not sure, but it's possible this was caused by whatever was done to fix the cursor movement bug in previous releases.
With word wrap turned on, up/down now moves to the next line break rather than visually down one line. The effect is like you're jumping down one paragraph instead of ...
I'm not sure, but it's possible this was caused by whatever was done to fix the cursor movement bug in previous releases.
With word wrap turned on, up/down now moves to the next line break rather than visually down one line. The effect is like you're jumping down one paragraph instead of ...
- Tue Feb 24, 2026 10:14 pm
- Forum: General
- Topic: UTF-8 as default doesn't seem to stick
- Replies: 2
- Views: 1873
Re: UTF-8 as default doesn't seem to stick
I think this is the third time you've asked for help with roughly the same problem. Can you tell us what steps you've tried and where you set the default to UTF-8?
- Wed Feb 18, 2026 11:24 pm
- Forum: General
- Topic: Cancelling document properties undoes applied values (9.9.3)
- Replies: 5
- Views: 2998
Re: Cancelling document properties undoes applied values (9.9.3)
While I agree with your excellent suggestions, TextPad has behaved this way for at least a quarter of a century, and this specific behavior has only been questioned once, so making it more intuitive will not be given the highest priority.
No worries. Now I understand it's intentional.
In that ...
- Wed Feb 18, 2026 2:41 am
- Forum: General
- Topic: Cancelling document properties undoes applied values (9.9.3)
- Replies: 5
- Views: 2998
Re: Cancelling document properties undoes applied values (9.9.3)
OK, this is a strange one. Maybe I dreamt it, but I think I once saw a reply to this message and it disappeared.
Is this cancel behaviour indeed a bug and will it be fixed?
Is this cancel behaviour indeed a bug and will it be fixed?
- Wed Feb 18, 2026 12:30 am
- Forum: General
- Topic: Align Right without Word Break
- Replies: 6
- Views: 2576
Re: Align Right without Word Break
Thank you. Looking forward to the new version.bbadmin wrote: Fri Feb 13, 2026 12:57 pm The maximum and average width of a font's characters are defined in its metadata. It turns out that using the average width for ANSI characters results in the behavior you expect, so that will be used in the next release.
- Fri Feb 13, 2026 1:58 am
- Forum: General
- Topic: Align Right without Word Break
- Replies: 6
- Views: 2576
Re: Align Right without Word Break
This depends on the font. The right margin is calculated to be the maximum number of characters of maximum width which will fit. If the displayed characters are thinner than the maximum, you get this effect. There was a time when "fixed width font" meant exactly that, but not any more ...
- Thu Feb 12, 2026 1:37 am
- Forum: General
- Topic: Align Right without Word Break
- Replies: 6
- Views: 2576
Align Right without Word Break
Hello,
What does Align Right do when "Word break at column number" is unchecked? I can't work out exactly what it's aligning to. In my experience, it seems to be about 4/5 of the width of the window. The documentation says aligning text uses the right margin, but isn't specific about whether that ...
What does Align Right do when "Word break at column number" is unchecked? I can't work out exactly what it's aligning to. In my experience, it seems to be about 4/5 of the width of the window. The documentation says aligning text uses the right margin, but isn't specific about whether that ...
- Thu Jan 22, 2026 5:43 am
- Forum: General
- Topic: ANSI/UTF-8/Regular text
- Replies: 1
- Views: 1992
Re: ANSI/UTF-8/Regular text
It's a bit of a simplification, but yes, UTF-8 is your best choice.
In the Save As dialogue, you can choose the encoding at the bottom of the window as you save a file:
encoding.png
There is also a default for each file type in TextPad. Go to Configure->Preferences... then choose Document ...
In the Save As dialogue, you can choose the encoding at the bottom of the window as you save a file:
encoding.png
There is also a default for each file type in TextPad. Go to Configure->Preferences... then choose Document ...
- Wed Jan 14, 2026 2:14 am
- Forum: General
- Topic: Cancelling document properties undoes applied values (9.9.3)
- Replies: 5
- Views: 2998
Cancelling document properties undoes applied values (9.9.3)
This seems to happen with any value in the Properties window, but it's very obvious if you pick something visible.
Open the properties window of a document
On the Colors tab, change the window background to red
Click Apply
Click Cancel and see that the background colour is reverted
As far ...
Open the properties window of a document
On the Colors tab, change the window background to red
Click Apply
Click Cancel and see that the background colour is reverted
As far ...
- Sat Dec 20, 2025 12:33 pm
- Forum: General
- Topic: Text cursor movement bug (9.9.3)
- Replies: 4
- Views: 2703
Re: Cursor movement bug (9.9.3)
I'm glad you were able to replicate it! I sat on it for some time, but only because I didn't want to report it just happening "sometimes".bbadmin wrote: Sat Dec 20, 2025 8:37 am This is a bug which will be fixed in the next release. Thanks for reporting it.
- Sat Dec 20, 2025 7:13 am
- Forum: General
- Topic: Text cursor movement bug (9.9.3)
- Replies: 4
- Views: 2703
Text cursor movement bug (9.9.3)
Firstly, this is not a new bug. I can replicate it in TextPad 9.9.3, but I believe it's been present for at least a few versions.
I've tried to make a simple test case, but it's possible there are still some other factors at play.
Ensure word wrap is off
Ensure that the window is pretty small ...
I've tried to make a simple test case, but it's possible there are still some other factors at play.
Ensure word wrap is off
Ensure that the window is pretty small ...
- Thu Dec 04, 2025 4:47 am
- Forum: General
- Topic: RegEx matching [^\n]+ includes \n
- Replies: 7
- Views: 3393
Re: RegEx matching [^\n]+ includes \n
I think line endings might be at play here. As in, \r gets captured, inserting a new line when referenced.
I was able to get it to work in a new blank document with:
Find what:
Replace:
I was able to get it to work in a new blank document with:
Find what:
Code: Select all
([^\r\t\n]+)\t([^\r\t\n]+)\r\n\1\t([^\t\r\n]+)Code: Select all
\1\t\2,\3- Wed Dec 03, 2025 12:49 am
- Forum: General
- Topic: TextPad 8.23.3 does not work on Windows 7
- Replies: 4
- Views: 2820
Re: TextPad 8.23.3 does not work on Windows 7
Why asking if you found proof that it won't support Win7 anymore?
Because the download page says that TextPad 8 runs on Windows 7.
Maybe the culprit is the changed behavior of a compiler ...
It's a guess, but it could also be whatever was done to fix opening files older than 1970 ...
- Mon Aug 18, 2025 4:54 am
- Forum: General
- Topic: Cannot Download TextPad 9.8.2
- Replies: 5
- Views: 4188
Re: Cannot Download TextPad 9.8.2
OK, thank you, Jack. I've contacted him.AmigoJack wrote: Sun Aug 17, 2025 3:18 pm On second guess you may want to send a private message to bbadmin with the IP address(es) you used and the user agent of your browser, linking to this topic, so he may look up the HTTP access log any maybe find you, and maybe even the culprit.