Reputation: 8895
is there a Perl IDE / Editor that supports working on files remotely (via SSH)?
Currently I'm using the shell with vim & nano on the remote machine, and when working locally, I usually use Aptana Studio (Eclipse + EPIC).
p.s: I'm working under linux.
Thanks,
Upvotes: 2
Views: 974
Reputation: 189628
It's not an IDE in the click and drool sense, but Emacs + Tramp is what I use (and these days, Tramp is included with Emacs).
Upvotes: 2
Reputation: 1755
I've been using Active State's Komodo Edit for the last few years. It's free, cross platform (linux, OSX, windows), can edit over scp or sftp and works well with perl. Active State also make the non-free Komodo IDE that is a more full featured IDE.
Komodo can also do vi emulation, which was a trifecta for me (perl/ssh/vi).
Upvotes: 3
Reputation: 21249
You could mount the remote file system with sshfs then work on it with any local IDE
Upvotes: 6