Jump to content

SciTE Hopper v1.0.5.7 : Jump to any line by one click ! Update of 07 Dec 2017


wakillon
 Share

Recommended Posts

OK, no problem, was just pointing it out.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

  • 4 weeks later...
  • 6 months later...

Updated due to few omissions. :rolleyes:

Edit : for those who don't understand the new add on : _SciTESetAutoItCodeLayout

it transforms a poorly presented au3 code :

Func _SciTEGetAnchors ( )
Local $_TmpValueF, $_TmpValueR, $_TmpValueU, $Anchors, $_Tmpline
For $x = 1 To UBound ( $_FileLinesArray ) -1
$_Tmpline = StringStripWS ( $_FileLinesArray[$x], 3 )
If StringLeft ( $_Tmpline, 4 ) = 'Func' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then
Local $SS = StringSplit ( StringTrimLeft ( StringStripWS ( $_FileLinesArray[$x], 4 ), 5 ), '(' )
If $SS[0] >= 1 Then $_TmpValueF &= $SS[1] & '^'
EndIf
If StringLeft ( $_Tmpline, 8 ) = '#Region ' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then _
$_TmpValueR &= StringTrimLeft ( $_Tmpline, 8 ) & ' #R' & '^'
Next
$_TmpValueU = StringTrimRight ( $_TmpValueU, 1 )
$_TmpValueF = StringTrimRight ( $_TmpValueF, 1 )
$_TmpValueR = StringTrimRight ( $_TmpValueR, 1 )
$Anchors &= '#User(' & @UserName & ')-0%' & $_TmpValueU & '@'
$Anchors &= 'Functions-1%' & $_TmpValueF & '@'
$Anchors &= 'Regions-2%' & $_TmpValueR
Return $Anchors
EndFunc ;==> _SciTEGetAnchors ( )

to this correctly presented au3 code ! ( for a function or entire script )

Func _SciTEGetAnchors ( )
    Local $_TmpValueF, $_TmpValueR, $_TmpValueU, $Anchors, $_Tmpline
    For $x = 1 To UBound ( $_FileLinesArray ) -1
        $_Tmpline = StringStripWS ( $_FileLinesArray[$x], 3 )
        If StringLeft ( $_Tmpline, 4 ) = 'Func' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then
            Local $SS = StringSplit ( StringTrimLeft ( StringStripWS ( $_FileLinesArray[$x], 4 ), 5 ), '(' )
            If $SS[0] >= 1 Then $_TmpValueF &= $SS[1] & '^'
        EndIf
        If StringLeft ( $_Tmpline, 8 ) = '#Region ' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then _
            $_TmpValueR &= StringTrimLeft ( $_Tmpline, 8 ) & ' #R' & '^'
    Next
    $_TmpValueU = StringTrimRight ( $_TmpValueU, 1 )
    $_TmpValueF = StringTrimRight ( $_TmpValueF, 1 )
    $_TmpValueR = StringTrimRight ( $_TmpValueR, 1 )
    $Anchors &= '#User(' & @UserName & ')-0%' & $_TmpValueU & '@'
    $Anchors &= 'Functions-1%' & $_TmpValueF & '@'
    $Anchors &= 'Regions-2%' & $_TmpValueR
    Return $Anchors
EndFunc ;==> _SciTEGetAnchors ( )

handy, in one click it do the job regardless of the huge number of lines ! ;)

And don't forget, if you are not satisfied : use ctrl+z until script is restored !

Edited by wakillon

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

  • 2 weeks later...

Updated.

Several functions improved and now more fast.

New functions added : one for Remove Debug Lines

and an other for set all your functions in Alphabetic order ( in your script, not just in the treeview ! )

( func headers and regions ( in fact, all lines between functions ) are not supported.)

If you have other suggestions... :)

Edited by wakillon

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

  • 8 months later...

Updated.

Some bugs corrected.

Added script size in statistics panel.

Edit with SciTE added in Options.

All files were updated and embedded in script.

Can be added minimized to windows Start.

New Tray Menu with easy access to AutoIt&SciTE forums/docs and some other Coder Websites.

More stable and use less CPU !  :)

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

Thank you, use this tool everytime.

 
So do I, he's so handy !
 
That's why too, i have added the possibility to add it to the Windows start.
 
Ah... if ashalshaikh could see what his creation is became !
 
Glad you like it and thanks for your feedback.  ;)

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Link to comment
Share on other sites

  • 2 months later...
  • 3 months later...
  • 9 months later...

HELP  ! Download Links not working !

Seems to be a link to a Google Drive page, but Google tells there is a virus (false positive I hope..)  and refuses access to file.

My scitehopper stopped working (not pointing to functions) with last update and SciteJump is clearly worse....

Link to comment
Share on other sites

Clearly SciTE Jump is worse.

If both don't work it's something your end. I would gladly help you but you haven't given us much to go by.

Edited by guinness

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

I get that sometimes with google chrome, I just download with IE and it works fine.

 

Hi JohnOne !

What's bizarre, those files are stored on Google Drive without any alarm or warning from them, and Google 4 business returns a false positive !!!  :blink:

They must be a little tired at google  :D

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

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