Reputation: 941
I need to use the features like find in folder to search for contents inside remote directories, currently I must download the directory and do this locally, or visit files individually. Can anyone put something helpful for this?
This question is asked as a comment here as well, but no answer is provided.
Thanks in advance!
Upvotes: 4
Views: 4889
Reputation: 4663
You can use the SFTP package enter link description here
After installation, you need to set up a remote host.
on your project right click > SMTP/SFT > MAP to remote
in the opening window setup your host connection.
You need to just update this section.
"host": "example.com",
"user": "username",
//"password": "password",
//"port": "22",
"remote_path": "/example/path/",
then check your connection
Right click on sublime > SFTP/FTP > Browse Remote
If you connect successfully you will see your directories.
Upvotes: 4
Reputation: 61
To to use the features like find in folder to search for contents inside directories I recommend firstly Notepad++ secondly visual studio community thirdly atom-git ;
if in chrome or firefox browser you can hit F12 developer mode and browse the dependent files in the folder structure remotely ;
even you access remote web resource your computer still need to download them anyway so you can download first to a temporary folder, use Notepad++ to "Find in Files" which is quite a powerful feature. The user interface is also visually appealing with fast execution of the directory wide search.
Upvotes: -1