1

I'm programming off Notepad++ at the moment and liking it, purely because i am seeing everything happen and why, including CSS3, HTML5, and learning Python, C++ etc

I've used a few IDE-s and appreciate them, but if i were to build a relatively simple site using Notepad++ what would i need to link everything up, like the design interface, Python code, CSS etc straight out of the text editor?

4

2 回答 2

2

你几乎肯定需要 NppExec 插件。这为 Notepad++ (NPP) 提供了极大的灵活性。

有了它,您可以:

  • 从 NPP 中运行 python、ruby、perl 脚本
  • 查看 NPP 控制台窗口中的输出
  • 弹出输入框提示输入参数,并将这些参数传递给脚本
  • 存储脚本的输出并将其插入到当前的 NPP 文件中
  • 将当前 NPP 文件中突出显示的文本传递给正在运行的脚本
  • 过滤来自脚本的输出并挂钩到当前 NPP 文件中的行,
  • 可能还有更多……

这是我为让 NPP 生成自定义时间戳而编写的示例。该代码说明了如何执行上述几个功能。(https://superuser.com/q/463751/153054

简而言之,NppExec 是一个引擎,它允许您在开发环境中集成您希望拥有的功能。稍加努力,你会发现你只受自己想象力的限制(当然还有时间!)

要查看 NppExec 提供的功能,请在 NPP 中弹出一个控制台窗口,然后键入help.

于 2012-08-20T19:57:54.337 回答
1

就 Notepad++ 而言,我认为它几乎内置了所有工具,甚至是 FTP。如果你看到一些你需要并且丢失的东西,你可以尝试搜索Notepad++ 插件

于 2012-08-11T10:37:16.113 回答