0

我想知道是否有任何方法可以在记事本++中运行 curl

我遇到了http://net.tutsplus.com/articles/news/cross-browser-css-in-seconds-with-prefixr/它显示了如何http://prefixr.com/在终端中运行

有任何想法吗?谢谢

4

2 回答 2

1

使用 Notepad++ 中的 NppExec 插件创建一个脚本来调用 CURL。我使用 curl 提交 SQL 以使用以下 NppExec 脚本进行格式化。

// enable $(OUTPUT) variable
NPE_CONSOLE v+
// this temporary file name will be used 
set TEMP_FILE = $(SYS.TEMP)\npp_sel.txt 
// save current selection as ANSI text file 
SEL_SAVETO $(TEMP_FILE) :a 
// POST selection to sql format the selection
curl -s --data-urlencode data@"$(TEMP_FILE)"  -d keyword_case=upper -d reindent=true -d n_indents=2 -d format=text "http://sqlformat.appspot.com/format"
// open new editor pane
NPP_SENDMSG WM_COMMAND IDM_FILE_NEW
// replace the selected text: cmd's output
SEL_SETTEXT $(OUTPUT)
// finally, disable $(OUTPUT) variable
NPE_CONSOLE v-
于 2012-02-15T20:59:28.640 回答
0

您可以下载将命令提示符嵌入到记事本++ 中的 NppExec 插件,然后从命令行运行您需要的任何内容。

要获取它,请转到插件 -> 插件管理器 -> 显示插件管理器并找到“NppExec”

于 2011-08-06T16:22:54.100 回答