メモ帳++でcurlを実行できる方法があるかどうか疑問に思っていました
http://net.tutsplus.com/articles/news/cross-browser-css-in-seconds-with-prefixr/に出くわしhttp://prefixr.com/
、端末で実行する方法を示しています
何か案は?ありがとう
メモ帳++でcurlを実行できる方法があるかどうか疑問に思っていました
http://net.tutsplus.com/articles/news/cross-browser-css-in-seconds-with-prefixr/に出くわしhttp://prefixr.com/
、端末で実行する方法を示しています
何か案は?ありがとう
Notepad++ 内で NppExec プラグインを使用して、CURL を呼び出すスクリプトを作成します。次の NppExec スクリプトを使用して、curl を使用してフォーマット用の SQL を送信します。
// 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-
コマンドプロンプトをnotepad ++に埋め込むNppExecプラグインをダウンロードして、コマンドラインから必要なものを実行できます.
取得するには、プラグイン -> プラグイン マネージャー -> プラグイン マネージャーの表示に移動し、"NppExec" を見つけます。