Messages - AbteriX [ switch to compact view ]

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 227next
26
Yes. For me is solved.

And how did you solve your issue?
Which tool did you used? Which command... e.t.c ?
And, were there double spaces between the single words?





 

27
And now, how did this current challenge ended up Contro?


Would be kind of you to give any, positive or negative, feedback if your problem is solved or not.





 

28
As I told you already, nobody can know which space to delete and which not.





 

29
Congratulations and Kudos, Hugo.

Well made tool. I think I will use this a little bit longer.

Some IDEAs I have found while using it, if I may:



Suggestion #1

Options > Tools
Tool to open file: path\to\notepad2.exe "%1"
Tool to open folder: path\to\filemanager.exe "%1" /A /B /c

Context menu
Open file with own tool
Open folder with own tool



Suggestion #2
Add option to use ESC key to exit the application



Suggestion #3
If easy possible, add option to limited search deep (fine for slow networkdrive)
For example, I know that my own files are in the three top level folders only,
but the folder may contain installation sources also with several sub folders, which are needles to include into the search.


Suggestion #4
If you have some free time, add keyboard shortcuts
Alt+N = Name pattern box
Alt+F = folders
Alt+P = Pattern restrictions
Alt+D = Date restrictions
Alt+S = Size restrictions
Alt+C = Content restrictions
Alt+R = Filter results

Alt+N and Alt+P shortcuts from menu could be changed to use CTRL+Alt+ instead?
Also I would miss a "Copy Path ONLY from result" if I didn't would know workarounds.


Idea #5
Double click on editable box to enable them and check the checkmark box,
instead of checking the checkmark box first.


Idea #6
Of course, history for editable boxes (last 25 recently inserted contents)


#7
Content restrictions:
- RegEx support (also fine for -OR-: abc|def|xyz)
- "Whole word" check box


#8
Date restrictions
Drop-Down-Menu: Last [ 3 |v] days


#9
Perhaps a "collect results" feature? Like "[X] Do not clear result on new search"?
Perhaps useful for finding duplicate files



 

30
Sort lines of a txt file by lenght of the string

With pure JavaScript and a TextEditor supporting WSH scripting.

NewText = (OldText().split("\n")).sort(function(a,b){return b.length-a.length}).join('\n');



PSPad
//X:\PSPad\Script\JScript\Sort.js
module_name = "StefanSort";
module_ver = "0.001a";
function Init(){
  addMenuItem("Sort Random"                        ,"Sort", "StefanSortRandom");
  addMenuItem("Sort by line length (Long to short)","Sort", "StefanSortByLineLengthDown");
  addMenuItem("Sort by line length (Short to Long)","Sort", "StefanSortByLineLengthUp");
}
function StefanSortRandom() {
  var objEditor = newEditor();
  objEditor.assignActiveEditor();
  objEditor.Text((objEditor.Text().split("\n")).sort(function(){return .5 - Math.random()}).join("\n").slice(0, -1));
}
function StefanSortByLineLengthDown() {
  var objEditor = newEditor();
  objEditor.assignActiveEditor();
  objEditor.Text((objEditor.Text().split("\n")).sort(function(a,b){return b.length-a.length}).join('\n').slice(0, -1));
}
function StefanSortByLineLengthUp() {
  var objEditor = newEditor();
  objEditor.assignActiveEditor();
  objEditor.Text((objEditor.Text().split("\n")).sort(function(b,a){return b.length-a.length}).join('\n').slice(0, -1));
}



EmEditor:
document.selection.text = ((document.selection.text.split("\n")).sort(function(a,b){return b.length-a.length})).join('\n');



 

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 227next
Go to full version