博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows下使用emacs+plink远程编辑erlang文件
阅读量:5740 次
发布时间:2019-06-18

本文共 930 字,大约阅读时间需要 3 分钟。

    1)plink.exe属于putty套件, 注册到环境变量;emacs的bin目录也要注册到环境变量中;

    2)在.emacs中增加如下:

(require 'tramp)

(setq tramp-default-method "plink") ;; 这样在emacs的minibuffer中C-x C-f之后就不必再输入/plink:
(byte-compile-file "E:/tools/emacs-24.3/lisp/net/tramp-sh.el") ;; 避免错误: Couldn't find proper 'ls' command

    3)打开控制台, 输入emacs打开编辑器(注意如果是双击emacs.exe会出现plink命令找不到的问题), 然后输入:

C-x C-f /username@remote_ip:directory

    输入密码便可打开远程目录。

    注意:在使用某版本的emacs时,出现连接到远程shell卡住的情况,于是下载了最新版本的emacs26.1。经测试,不需要编译tramh-sh.el文件,但是登陆时需要输入命令:

C-x C-f /plink:username@remote_ip:directory

 

    在win平台安装了erlang后,便可以在.emacs增加如下配置:(参见The erlang mode for Emacs:http://erlang.org/doc/apps/tools/erlang_mode_chapter.html)

(setq load-path (cons "C:/Program Files/erl<Ver>/lib/tools-<ToolsVer>/emacs" load-path))

(setq erlang-root-dir "C:/Program Files/erl<Ver>")

(setq exec-path (cons "C:/Program Files/erl<Ver>/bin" exec-path))

(require 'erlang-start)

 

转载于:https://www.cnblogs.com/Jackie-Snow/p/9164320.html

你可能感兴趣的文章
MySQL5.1版本的主从复制搭建
查看>>
XlsReadWrite 写保护疑惑??
查看>>
Mysql中的count()与sum()区别详细介绍
查看>>
页面刷新方法介绍
查看>>
Spark中hive的使用(hive操作es示例)
查看>>
前端页面Javascript实现 考试系统中上一页、下一页 展示
查看>>
PHP与MySQL权威指南
查看>>
曹连雨-曙光云计算与智慧城市战略及实践
查看>>
JFDepthView
查看>>
Don't Release custom typ UIButton by yourself
查看>>
linux定时运行命令脚本——crontab
查看>>
adb架构
查看>>
udp服务和客户端注意点记录
查看>>
软件级负载均衡器(LVS/HAProxy/Nginx)的特点简介和对比
查看>>
PMP 管理学6大定律之六(手表定理)
查看>>
mcrypt启用 加密以及解密过程详细解析
查看>>
GO study
查看>>
最完美ThinkPHP nginx 配置文件
查看>>
干净虚拟机(centos 6.4)上从头到尾安装并调试Mdrill(一)
查看>>
如何在eclipse中配置反编译工具JadClipse
查看>>