hi all, the following code is a textmate javascript snippet, can anyone explain it please? cuz i want to use this feature in my own snippets. greate thanks.
document.getElement${1/(T)|.*/(?1:s)/}By${1:T}${1/(T)|(I)|.*/(?1:agName)(?2:d)/}("$2")
|
|
hi all, the following code is a textmate javascript snippet, can anyone explain it please? cuz i want to use this feature in my own snippets. greate thanks.
|
||
|
|
|
|
Those parts you probably knew already, but the other two are slightly trickier.
The overall result is that if you invoke the snippet and type "T", it will complete to 'getElementsByTagName("")'. If you invoke it and type "I", it will complete it to 'getElementById("")'. |
||
|
|
|
I know nothing about textmate, but looks like it is to generate the followings:
Not this though:
|
||
|
|