使用 Eclipse 作为编辑器(如 Coda 或 Vim)
有一个使用 Vim 和 Coda 创建的 Python 项目,其中不包含任何编辑器特定文件。我习惯使用 Eclipse 作为编辑器,所以我想使用 Eclipse 来处理这个项目。但我不知道如何在 Eclipse 中创建新项目或不导入它的情况下执行此操作。因为我不想获得这些文件的副本。我只想像在 Coda 或 Vim 中那样进行编辑。
There is a Python project created by using Vim and Coda which doesn't include any editor specific file. I'm used to use Eclipse as an editor so I want to work on this project using Eclipse. But I don't know how to do it without to create a new project in Eclipse or without importing it. Because I don't want to get a copy of these files. I just want to edit like I can do in Coda or Vim.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Eclipse 执行 File->Open ,即使不在项目中,它也会加载文件
从我机器上的命令行,预期的 open -a Eclipse.app t.py 不起作用,因为 Eclipse 尚未将自己注册为能够关联Python脚本文件(它也无法打开java文件,所以Eclipse不是pydev安装程序)
From Eclipse do File->Open and it will load the file even if not in a project
From the command line on my machine the expected open -a Eclipse.app t.py does not work as Eclipse has not registered itself as being able to associate Python script files (it also fails to open java files so is Eclipse not pydev setup)