vbscript| function |vbscript| function editplus is my most common asp/html/css development tool.
However, it only supports the automatic completion and function List of A/C + + system language, with no built-in ASP (VBSCRIPT) functionality. To facilitate my work, I simply implemented these two features by imitating the original configuration file.
Create a new ASP.ACP file first.
--------------------------------------
#TITLE =ASP/VB
; EditPlus auto-completion File v1.0 written by SNOWALK.HD.
; This file is provided as a default auto-completion the file for asp/vbscript/vb.
#CASE =n
#T =if
If ^! Then
End If
#T =while
While ^!
Wend
#T =for
for ^!,,
Next
#T =select
Select Case ^!
Case
End Select
#T =do
Do While
^!
Loop
#T =class
Class ^!
End Class
#T =function
Function ^!
End Function
#T =sub
Sub ^!
End Sub
#
---------------------------------------
Edit>>preferences>>files>>setting&syntax
Select HTML on the right file types
In the lower right of the auto completion fill in the ASP.ACP path can be implemented ASP (VB) automatic completion
As for the function list function, write the following regular expression in functions pattern
^[\t]* (public |private)? (Sub|function|property|class) [\t].*
When looking at an ASP file with a large number of functions and procedures in the future, if you want to quickly locate a function or procedure name as VB6, press CTRL+F11 to eject the list of Functions dialog box.