Jump to content

SciTE 3.5.5.101 for AutoIt


Yashied
 Share

Recommended Posts

Link to comment
Share on other sites

On 3/22/2015 at 12:12 PM, Yashied said:

SciTE 3.2.5.99 updated, added SciTE Theme Manager (SciTEConfig replacement) and fixed few bugs.

post-4574-0-47710200-1427054554.png 
it only takes 1 digit., ...for the next update :)

Edited by argumentum
replaced image provider

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

Link to comment
Share on other sites

Hi Yashied,

Can you include my includer script in your SciTE project as a menu item. ?

This is the link

'?do=embed' frameborder='0' data-embedContent>>

Spoiler

My Contributions

Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language.

UDF Link Viewer   --- A tool to visit the links of some most important UDFs 

 Includer_2  ----- A tool to type the #include statement automatically 

 Digits To Date  ----- date from 3 integer values

PrintList ----- prints arrays into console for testing.

 Alert  ------ An alternative for MsgBox 

 MousePosition ------- A simple tooltip display of mouse position

GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function

Access_UDF  -------- An UDF for working with access database files. (.*accdb only)

 

Link to comment
Share on other sites

  • 3 weeks later...

SciTE 3.2.5.99 has been updated.

  • Added ExecSel utility (Context MenuTextExecute) that allows you to run selected part of AutoIt code with support for output result to the console.
  • Some commands of the context menu now appear only in the corresponding lexer.
  • HighlightingIdenticalText.lua: added the following parameters to highlight identical text (see SciTEGlobal.properties):
    highlighting.identical.text.autoselectword=0
    highlighting.identical.text.by.style=0
    highlighting.identical.text.matchcase=0
    highlighting.identical.text.wholeword=0
    highlighting.identical.text.minlength=2
  • AutoItAutoComplete.lua: improved algorithm for Autocomplete and Calltip.
  • Fixed a bug causing to deactivation Redo/Undo buttons in the Toolbar after saving the file.
  • Fixed some bugs in the Compiler Wrapper.
Edited by Yashied
Link to comment
Share on other sites

  • 4 weeks later...

Thaks Yashied. Let me check

 

Spoiler

My Contributions

Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language.

UDF Link Viewer   --- A tool to visit the links of some most important UDFs 

 Includer_2  ----- A tool to type the #include statement automatically 

 Digits To Date  ----- date from 3 integer values

PrintList ----- prints arrays into console for testing.

 Alert  ------ An alternative for MsgBox 

 MousePosition ------- A simple tooltip display of mouse position

GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function

Access_UDF  -------- An UDF for working with access database files. (.*accdb only)

 

Link to comment
Share on other sites

Request:

  When saving an "untitled" tab, when writing the filename, to have the editor add the ".au3" extension if it has no "."(dot) in the filename. That way it will only assume is a au3 file in case it has no extension.

Thanks. 

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

Link to comment
Share on other sites

  • Developers

Request:

  When saving an "untitled" tab, when writing the filename, to have the editor add the ".au3" extension if it has no "."(dot) in the filename. That way it will only assume is a au3 file in case it has no extension.

Thanks. 

​This is a very simple modification in the SciTE source SciTEWinDlg.cxx:

OPENFILENAMEW ofn;
        memset(&ofn, 0, sizeof(ofn));
        ofn.lStructSize = sizeof(ofn);
        ofn.hwndOwner = MainHWND();
        ofn.hInstance = hInstance;
        ofn.lpstrFile = saveName;
        ofn.nMaxFile = ELEMENTS(saveName);
        GUI::gui_string translatedTitle = localiser.Text(title);
        ofn.lpstrTitle = translatedTitle.c_str();
        ofn.Flags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT | OFN_NOCHANGEDIR;
        ofn.lpstrFilter = filesFilter;
        ofn.lpstrInitialDir = directory.AsInternal();
//+ SciTE4Autoit3 => Start Update => Setting this to an empty string triggers the "add default extension if no registered extension is typed".
        ofn.lpstrDefExt = GUI_TEXT("");

 

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.
  :)

Link to comment
Share on other sites

Link to comment
Share on other sites

Hi Yashied - great work.

 

One observation. When using the sidebar to navigate functions - the curser moves to the function  (as expected) but the curser position is 3 lines from the bottom of the page. Is this intentional? Could the curser position be changed to nearer the top of the page ?

 

Thanks.

 

Steve

Link to comment
Share on other sites

  • 1 month later...
Link to comment
Share on other sites

@Yashied , Can i get the source code of SciTE 3.2.5.99 ?. 

Spoiler

My Contributions

Glance GUI Library - A gui library based on Windows api functions. Written in Nim programming language.

UDF Link Viewer   --- A tool to visit the links of some most important UDFs 

 Includer_2  ----- A tool to type the #include statement automatically 

 Digits To Date  ----- date from 3 integer values

PrintList ----- prints arrays into console for testing.

 Alert  ------ An alternative for MsgBox 

 MousePosition ------- A simple tooltip display of mouse position

GRM Helper -------- A littile tool to help writing code with GUIRegisterMsg function

Access_UDF  -------- An UDF for working with access database files. (.*accdb only)

 

Link to comment
Share on other sites

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
 Share

×
×
  • Create New...