Jump to content

BETA: SciTE v5x & lua Dynamic_include and "Smart" AutoComplete for Vars/UDFs/Abbrevs


Recommended Posts

Posted (edited)

I have such problem:

  Quote

+>21:32:47 Script started, waiting for output. (pid=30052) 6
->>>>>> Admin not responding so close master pid:30052 err:4
+>21:32:49 AutoIt3Wrapper Finished.

Expand  

I see the request to accept UAC . I accept them.
Very often but not always I get "Admin not responding so close master".

Any idea why this happens ?

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted (edited)
  On 4/7/2024 at 7:56 PM, mLipok said:

Any idea why this happens ?

Expand  

I need to take a closer look at that and let you know when I had a free moment to check, as that messages seems to be obsolete and should be debug only.

The process is working fine, and it is just this message that appears now and then when ending the Master Script? 

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

  • Developers
Posted
  On 4/7/2024 at 8:31 PM, Jos said:

The process is working fine, and it is just this message that appears now and then when ending the Master Script? 

Expand  

So, is it working fine and just displaying this message sometimes? Please confirm.   
Thanks :) 

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

I found issue with calltips.

 

Please try this snippet:

_ArrayDisplay($aTest, "TITLE")
_ArrayDisplay($aTest, "TITLE (v2)")

place the cursor on v2 inside this bracket, try to bring caltips with CTRL+SHIFT+SPACE

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted (edited)
  On 4/11/2024 at 8:00 AM, mLipok said:

I found issue with calltips.

Please try this snippet:

Expand  

This is a core SciTE issue, so not much I am going to do something about, but is there any reason you don't answer the previous question before dumping the next one? 🙂   

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)
  On 4/13/2024 at 10:15 AM, Jos said:

is there any reason you don't answer the previous question before dumping the next one? 🙂   

Expand  

Getting old ;), and overworked 🥺.

Will answer ASAP , when back from weekend vacation.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 3 weeks later...
Posted
  On 4/9/2024 at 8:25 AM, Jos said:

So, is it working fine and just displaying this message sometimes? Please confirm.   

Expand  

I noticed this problem on two computers.
I have poor access to one of them, and on this one it always happens.

The thing is that it's a really old computer (it's probably a dozen or so years old).

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

referring to my post:

  Quote

+>21:32:47 Script started, waiting for output. (pid=30052) 6
->>>>>> Admin not responding so close master pid:30052 err:4
+>21:32:49 AutoIt3Wrapper Finished.

Expand  

So I can't run the script, and this is a problem.

I had to use SHIFT+F5 instead F5, in order  to omnit AutoItWrapper.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted (edited)

Ok, so it is really failing. Please share the total debug log with me so I can check what is happening. ... tnx :) 

(or if you know a way for me to replicate it would even be better!) 

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted
While 1
    ConsoleWrite("crashes after a while" & @CRLF)
WEnd

After having weird unexplainable crashes when running from SciTE, I tracked it down to the console, not sure why it crashes.

Using latest beta.

  Reveal hidden contents

Untitled.jpg.a29a2eaa6f6150c4c19b988219050703.jpg

  • Developers
Posted

That doesn't surprise me that we will hit some sort of limit when you fire that many ConsoleWrite to the stdout.  AutoIt3Wrapper is an AutoIt3 script too and will require some processing time and isn't build for Mass STDOUT data. When I add a Sleep(10) in that loop, things work fine, so I am on the fence whether we simply need to live with this limitation or spent time in trying to debug whether it can be resolved at all.  

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

Adding a sleep will just delay the crash, I originally ran it with Sleep(40) but removed it for faster reproducability and it still crashed after about 140 seconds which is barely 3500 lines, kind of making console debugging a game of chance.

I tried AutoIt3Wrapper (23.402.1150.0) and it hard crashed AutoIt with Error allocating memory after taking about 2 GB instead of silently failing. Also lasted much longer ~5 minutes instead of 34 seconds.

It was kind of ironic; by trying to find my bug, I made it worse by producing more console output 🥲

  • Developers
Posted
  On 5/6/2024 at 4:24 PM, paw said:

kind of making console debugging a game of chance.

Expand  

Yeap... but guess you are on your own for that. ;) 
Compile as Console and run the script from CMD prompt.

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)

Hi Jos,

I may have found a minor bug for Autocomplete, or at least the part that collects the list of all Variable names.

Local $oTest1, $oText2

$oTest1

If you enter a period after $oTest1 (below the declaration), the autocomplete will come up with an option of "$oTest1," (including a comma). Otherwise the autocomplete doesn't show the one ending with a comma. Not sure if the variable including a comma at the end of it is intended or not?

Edit:

Also meant to say that my indenting changes above are handy at times and a pain at other times. Especially after a continuation line, then it gets the indent level wrong. Also after commented lines using number pad comment.

Edited by donnyh13

LibreOffice UDF  ; Scite4AutoIt Spell-Checker Using LibreOffice

  Reveal hidden contents

 

  • 2 months later...
Posted (edited)

Stabilization ?
No more issues ?
:)

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Developers
Posted (edited)

Honestly: I am not so sure if I really should continue the development of the Full SciTE version with all its pretty complex LUA script to support AutoIt3.
Maybe we should bundle the knowledge and build out the one of the current extension versions available for VSCode as VSCode is a real nice Editor?
 

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted
  On 7/29/2024 at 12:24 PM, Jos said:

Maybe we should bundle the knowledge and build out the one of the current extension versions available for VSCode

Expand  

With a total of 30 min. of experience with VSCode... I feel like running back to SciTE :lol:

Not sure how "prime time" are those extensions. Again, 30 min. of experience.

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Posted (edited)
  On 7/29/2024 at 12:24 PM, Jos said:

Honestly: I am not so sure if I really should

Expand  

I can hear you Jos, the Scripts you are having to maintain are very complex for sure to keep running correctly.

I'm not sure if you're asking everyone, or mainly MLipok, if the latter, then sorry for the below 2 cents. :)

I can't speak from too much experience with both, but for what it's worth.... I have, of course used Scite for all of my AutoIt coding, and have grown fond and used to it, even having a few custom lua scripts to help make life easier. I have also used VSCode, for other projects and like many of its features. There are definitely pro's and Con's to both. I do like Scite for its simple layout, and plain display, just the necessities, and better performance (for me, anyway). Plus smaller download size. VSCode is handy for its many available plugins, and customization, but bigger install file size. Plus, a con for me, though not an impossibility, is Windows 7 isn't supported any more, so no more updates, but the rest still works fine, until they decide to cut something off.

How many features do you think would be lost if the switch was done? i.e. Keywords,(Emmet, I see), Header creator, tidy, "Smart" AutoComplete and call tips, etc., would they still be able to be integrated/re-created to work? I can see some would be as there are already a few people who have done VSCode plugins, Logan and Genius257, probably a few others, but just curious the extent. I haven't explored those plugins much. What about custom LUA scripts? That would be made more complex, I suppose, and be another language?

Overall I would miss Scite. But if the features, or at least the main features could be added to VSCode too, I think the switch could be tolerable.

Sorry, not much input. Maybe others will have more insightful comments.

Edited by donnyh13

LibreOffice UDF  ; Scite4AutoIt Spell-Checker Using LibreOffice

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...