Jump to content

Recommended Posts

Posted

great, thanks for the clarification.

Signature - my forum contributions:

  Reveal hidden contents

 

Posted

SciTE Jump is an extension to SciTE and I've tried not to include features that are already in SciTE. But thanks for testing and I hope you enjoy the 'quick function jump' feature.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

If you want to or need to compile SciTE Jump using v3.3.9.10, then add #pragma compile(AutoItExecuteAllowed, True) to the pragma directives. I won't be uploading a new version today. Actually for this beta version come to think of it.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

I compiled the beta version of SciTE Jump with v3.3.9.11, due to changes with WinGetText that were updated in that AutoIt release. See post >#466 for the download.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

@Guinness

can I use regexp to search functions

 

for example

(?i).*SQL.*home

find that function

 

Func _SQL_Get_some_date_from_table_Home()
............... 
EndFunc

EDIT:

.... to search functions in SciTE Jump

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

Posted

Yes, just check the SRE checkbox and type in the search input your regular expression.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Currently copying a function snippet isn't working in the beta. This is down to a workaround I introduced for ControlGetText reading SciTE, but this isn't needed anymore for fix Jon introduced for ControlGetText.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Re-compiled the beta with v3.3.8.13 and updated post >#466.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

  • 2 weeks later...
Posted

Re-compiled the beta with v3.3.8.15 and updated post

There were also a couple of internal changes made to writing settings to %APPDATA%, for anyone interested.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Re-compiled the beta with v3.3.8.17 and updated post

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)

Key combination ALT+Q does not work properly.

example

I'am in SciTE by pressing ALT+Q - SciTE Jump opens.

SciTE Jump is active window pressing ALT+Q and focus does not back to SciTE - SciTE Jump is still active instead SciTE.

EDIT: SciTE Jump v2.10.103.211

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

Posted
  On 7/25/2013 at 6:36 AM, guinness said:

Yes, just check the SRE checkbox and type in the search input your regular expression.

 

I'm sorry but I have not had the time or need to check.
Now this function came to be I need.
I do not understand where is the checkbox.
 
 
I want to search here:

$__iGUIInputSearch 

not here:

$eSearchInputFind

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
Strange, I can not repeat this mistake with ALT + Q
I'll keep an eye on that.

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

I didn't think it was an issue, maybe a one off thing.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 8/18/2013 at 10:15 PM, mlipok said:

 

I'm sorry but I have not had the time or need to check.
Now this function came to be I need.
I do not understand where is the checkbox.
 
 
I want to search here:

$__iGUIInputSearch 

not here:

$eSearchInputFind

Ah, you can't I'm afraid as this is for quick searching only. If you want to use a regular expression then move to the second tab screen.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

so I have Feature Request

When somebody (for example Me) typed in the search field, the first character "?" then that could be considered as a supplement to other characters to "(i?)" and treat the whole as a regular expression.

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

I will see. Like Jos, I add features that I think will be for a wider audience. The fact you can search in files using the search and replace is what you should be using.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)
  On 8/18/2013 at 10:58 PM, guinness said:

I will see. Like Jos, I add features that I think will be for a wider audience. The fact you can search in files using the search and replace is what you should be using.

 

You misunderstand me

See again my post:

  On 7/24/2013 at 11:29 PM, mlipok said:

 

@Guinness

can I use regexp to search functions

 

for example

(?i).*SQL.*home

find that function

 

Func _SQL_Get_some_date_from_table_Home()
............... 
EndFunc

EDIT:

.... to search functions in SciTE Jump

 

 

I do not want anything to replace.
I want to find a function in the UDF file but do not remember what it was exactly called,
I only remember the beginning of the name of the feature and some extra word.
 
 
EDIT:
for this example I want to find
_SQL_Get_some_date_from_table_Home()
and
how to do simply
?*SQL*HOME*
and SciTE Jump
intepret this that
find function with RegExp
(?i).*SQL.*HOME.*
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

Posted

So select the use SRE checkbox and make sure preview only is checked.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

I use this example code:

If False Then ; Comment assigned to External "IF THEN"
    ;.....
    If True Then ; Comment assigned to Central "IF THEN"
        ;.....
    Else ; Comment assigned to Central "IF THEN"
        ;.....
        If True Then ; Comment assigned to Internal "IF THEN"
            ;.....
        Else ; Comment assigned to Internal "IF THEN"
            ;.....
        EndIf ; Comment assigned to Internal "IF THEN"
        ;.....
    EndIf ; Comment assigned to Central "IF THEN"
    ;.....
Else ; Comment assigned to External "IF THEN"
    ;.....
EndIf ; Comment assigned to External "IF THEN"

I user SRE ChecBox

Search=(?i);.*Comment.*External.*

Replace=;---

Pushing REPLACE Button

SciTe Jump blink red and nothing else was done

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

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