Open files tabs - auto-sorted how?
-
annoy
Well, a use-case of questionable value (auto-sorted tabs) may spur on extraordinary suggested solutions. :-)
Maybe the OP could say more about why the sorted tabs makes a lot of sense for his application, but I’m thinking that this might be impossible. -
@Alan-Kilborn said in Open files tabs - auto-sorted how?:
Maybe the OP could say more about why the sorted tabs makes a lot of sense for his application, but I’m thinking that this might be impossible.
Yes, how we say, that would give room for further thoughts.
-
@guy038 said in Open files tabs - auto-sorted how?:
Moreover, hitting twice on the default shortcut Alt + W to get the list of all opened files, then on the Alt + T shortcut to sort them doesn’t seem an insurmountable task…, especially since you only have to do it if you open an other file, not yet present in your current N++ session !
If the OP really wanted to do that a lot, and since Notepad++ Macros cannot influence inside the Windows dialog box, I’d suggest an external macro-defining application, such as AutoHotKey (which I never use, but have heard good things about). In AHK, one should be able to define a macro that sends the keystrokes
Alt+W Alt+W Alt+T Alt+O
(I added clicking theOK
when done sorting), then it could be done with a single keystroke instead of 4, which is an improvement (though not technically automatic). -
@PeterJones said in Open files tabs - auto-sorted how?:
such as AutoHotKey
or maybe some
SendKeys
games with P.S. -
@PeterJones said in Open files tabs - auto-sorted how?:
I’d suggest an external macro-defining application, such as AutoHotKey (which I never use, but have heard good things about)
OK, I bite. I scripted something related to this
Window...
menu item a couple of weeks ago —wanted a list of all the open tabs—, so here is my attempt (works fine here :)#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #IfWinActive, ahk_class Notepad++ !w:: WinActivate ahk_exe notepad++.exe ahk_class Notepad++ WinMenuSelectItem, A, , Window, Window... Sleep, 100 WinActivate, Windows SetControlDelay -1 ControlClick, Button4, Windows Sleep, 100 ControlClick, Button5, Windows WinClose, Windows return #If
This
AutoHotkey
script only works ifNotepad++
is the active application —as the#IfWinActive
directive stats— so it cannot interfere with other applications. Fire it pressingAlt + W
, the same key combo that opens theWindow...
window.Have Fun!
-
I don’t understand why some of you are complicating this like its a rocket science. Simple tickbox either: A) Leave tabs unsorted (like it is now) B) Always auto sort in real time
A programmer who is working on this editor, could do that in 10 minutes. I would, but I am not C programmer and I don’t have to source code.
Its that easy… and yes, it is useful!
-
You asked if it was possible. We told you how it wasn’t possible in the current application, and gave you workarounds. If you don’t like that, fine.
We aren’t the programmers. A quick search of this forum, or the offiical Notepad++ homepage, would have directed you where to actually request new features: I’ll give you a hint, it’s not here. Oh, right, @Ekopalypse even linked you to the FAQ that explains it.
yes, it is useful!
Maybe so, maybe not. But no one above said it wasn’t. You may have misread Alan, who said the lack of that feature was a dumb reason to stop using Notepad++, but he didn’t say the feature itself was dumb.
I am not C programmer and I don’t have to source code.
Its that easy…There are two errors in those statements:
- You do have access to the source code, and you can submit PR to that source code, if you have the ability.
- If you are not a C programmer, then you cannot know how easy, or not, it is – especially if you have not studied the source code. Every time a user says “it only takes a few minutes, but I won’t/can’t”, that person proves they don’t have the knowledge to comment meaningfully on the programming task at hand. There are often many complicating factors that you, as a user, cannot think of immediately; one change may affect something else unexpected, or require edits in multiple sections, or…
And, as I said before, you never asked in the right place to request a new feature , so it doesn’t matter how long it would take to program, because the developers never got the request.
Your choices are to continue to whine, which helps no one and annoys many; to accept things the way they are and possibly use a workaround as suggested above; or to submit a feature request, and possibly use a workaround while waiting for the feature to either be added or rejected.
-
I’m not sure if it is the OP or someone else (it appears some username games are going on?), but someone recently opened a true feature request for it HERE.
You may have misread Alan, who said the lack of that feature was a dumb reason to stop using Notepad++, but he didn’t say the feature itself was dumb.
Don’t make me say it Peter! :-)
In this case I think it might help the OP’s case to cite any other editors out there that provide this feature.
-
Feature request is like screaming in the wild. As you can see nothing has happened.
-
@Maxitrol-Mat said in Open files tabs - auto-sorted how?:
As you can see nothing has happened
Developers have their priorities.
They concentrate on bug fixes and new features that they feel will be useful to a majority of users.
If they have time, and they feel a request is a nice addition, if maybe not useful to many, they will implement it.Your choices are to continue to whine…
It appears the choice has been made!
And really, you didn’t have to break this into ANOTHER thread; serves no purpose except to have any related comments be disjointed.