File menu -> tools -> intellisense manager -> custom
"Go There"
In replace Box: GT
In With Box: {GT}
Add button -> Script button -> paste:
Code:
LPARAMETER oFoxCode
oFoxCode.ValueType = 'V'
local cDIR
cDir = getdir()
if empty(cDir)
return '*fail'
else
cDir = ["]+cDir+["]
set default to (cDIR)
RUN /n explorer /e, &cDIR
endif
return "set default to " + cDir
"Open Explorer"
In replace Box: OE
In With Box: {OE}
Add button -> Script button -> paste:
Code:
LPARAMETER oFoxCode
oFoxCode.ValueType = 'V'
local cDIR
cDir = getdir()
if empty(cDir)
return '*fail'
else
cDir = ["]+cDir+["]
RUN /n explorer /e, &cDIR
endif
return "*opened " + cDir
Hit 'OK' button.
Now in the command window you can type either "gt" or "oe" and navigate among directories with ease.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.