Infocatcher

Results 45 issues of Infocatcher

Input: ``` js foo(2 /*IDCANCEL*/, "Cancel", 0x1 /*BMB_DEFAULT*/); var bar = 1 /*SOME_CONST_1*/, baz = 2 /*SOME_CONST_2*/; ``` Output: ``` js foo(2 /*IDCANCEL*/ , "Cancel", 0x1 /*BMB_DEFAULT*/ ); var bar...

type: enhancement
language: javascript

Tests output: ``` ==== P_A_C_K_E_R.unpack ============================================================ ---- input ------- function test (){alert ('This is a test!')}; eval(function(p,a,c,k,e,r){e=String;if(!''.replace(/^/,String)){while(c--)r[c]=k[c]||c;k=[function(e){return r[e]}];e=function(){return'\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\b'+e(c)+'\b','g'),k[c]);return p}('0 2=\'{Íâ–+›ï;ã†Ù¥#\'',3,3,'var||a'.split('|'),0,{})) ---- expected ---- function test (){alert ('This is a...

type: bug
language: javascript

Also suggested here: https://addons.mozilla.org/addon/tab-scope/reviews/user:1735045 And here: https://addons.mozilla.org/addon/tab-scope/reviews/493762/ I think, extension should use system or browser appearance (if possible, of course). Let's see. This is Windows 7 with Tab Scope 1.2:...

Closes #2078 Yeah, I played with https://matthewfl.com/unPacker.html and http://dean.edwards.name/packer/, pack expected output from failed test... and finally found the difference: looks like there was some \escaping typo. Also I'm not...

With Tree Style Tab: ``` [Tab #1] (selected) [Tab #2] [Tab #3] ``` Try suspend tree from context menu on tab #1: only first tab becomes suspended because extension selects...

I don't like new per-tab find bars, it's very annoying for me... I already have unchecked "Findbar starts closed in new tabs" in Options, but still see some difference between...

enhancement

Failed for requests like https://exchange-rates.org/converter/EUR/USD/1/N ```js var asyncUpdater = { … addRequest: function(code) { … request.send(null); //

bug
compatibility

Updated version: https://github.com/Infocatcher/AkelPad_scripts/blob/jsBeautifier_new/jsBeautifier.js Changes: https://github.com/Infocatcher/AkelPad_scripts/commits/jsBeautifier_new Merged with master branch: 532e193acb70db41c8e88cac090c5d76ea84ce15 Tests: ``` ==== Old tests ============================================================ ---- input ------- #! ---- expected ---- #! ---- output ------ #! ---- expected-ws...

bug
compatibility

Requested here: http://akelpad.sourceforge.net/forum/viewtopic.php?p=28783#28783 (and not only here…) https://en.wikipedia.org/wiki/Quoted-printable Example: ``` 7 =D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB =D1=81=D0=BE=D0=B7=D0=B4= =D0=B0=D0=BD=D0=B8=D1=8F =D0=BA=D1=80=D0=B0=D1=81=D0=B8=D0=B2=D1=8B=D1=85 = =D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9=D1=81=D0=BE=D0=B2 / =D0=A5= =D0=B0=D0=B1=D1=80=D0=B0=D1=85=D0=B0=D0=B1=D1=80 ```

enhancement
WIP

Example from SearchReplace.js: ``` js function RectToArray(lpRect, rcRect) { rcRect.left=AkelPad.MemRead(_PtrAdd(lpRect, 0) /*offsetof(RECT, left)*/, 3 /*DT_DWORD*/); rcRect.top=AkelPad.MemRead(_PtrAdd(lpRect, 4) /*offsetof(RECT, top)*/, 3 /*DT_DWORD*/); rcRect.right=AkelPad.MemRead(_PtrAdd(lpRect, 8) /*offsetof(RECT, right)*/, 3 /*DT_DWORD*/); rcRect.bottom=AkelPad.MemRead(_PtrAdd(lpRect, 12) /*offsetof(RECT,...

compatibility