- commit
- 214dec6
- parent
- 61f8171
- author
- Ian Eure
- date
- 2012-09-04 14:37:17 -0600 MDT
Add README
1 files changed,
+25,
-0
+25,
-0
1@@ -0,0 +1,25 @@
2+* SSH mode for Emacs
3+
4+ Support for remote logins using =ssh=. This program is layered on
5+ top of shell.el; the code here only accounts for the variations
6+ needed to handle a remote process, e.g. directory tracking and the
7+ sending of some special characters.
8+
9+* Usage
10+
11+ =M-x ssh RET hostname RET=
12+
13+** Completion
14+
15+ Tab completion is never going to work as well as with local shells,
16+ but it does work. Set =ssh-directory-tracking-mode= to =’ftp=, and
17+ set =ssh-mode-hook= to:
18+
19+#+BEGIN_SRC emacs-lisp
20+(lambda ()
21+ (shell-dirtrack-mode t)
22+ (setq dirtrackp nil))
23+#+END_SRC
24+
25+ Sometimes stuff will get out of sync anyways. Hit =M-x dirs RET= to
26+ resync.