Please add similar tab handling features to Textpad as exist in IE and FireFox.
close button on tab
middle click closes tab
Close file by middle click on tab
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
- Posts: 1
- Joined: Thu Mar 05, 2009 1:54 am
I second the middle click on Tab request
This is becoming a standard - not just on FF and IE ... also Safari, Pidgin, Visual Studio, SQL Server Management Studio, the list goes on.
Even the competition (notepad++) supports middle-click to close a tab.
Even the competition (notepad++) supports middle-click to close a tab.
-
- Posts: 4
- Joined: Mon Oct 04, 2004 3:48 am
I've "added" a middle click tab close to to Textpad using AutoHotkey like so:
http://www.autohotkey.com/
also see this thread http://forums.textpad.com/viewtopic.php ... autohotkey
Code: Select all
~MButton::
MouseGetPos, , , id, control
If( control = "MDIClient1" ) {
Send {LButton}
Sleep 100
Send ^{f4}
}
return
also see this thread http://forums.textpad.com/viewtopic.php ... autohotkey
-
- Posts: 5
- Joined: Tue Mar 03, 2009 10:07 pm
- Location: Stockport UK
Re: Close file by middle click on tab
[quote="brodie"]Please add similar tab handling features to Textpad as exist in IE and FireFox.
close button on tab
middle click closes tab[/quote]
.. and I'd welcome "CTRL+W" to close a tab
close button on tab
middle click closes tab[/quote]
.. and I'd welcome "CTRL+W" to close a tab