This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Notepad++用ファイル実行補助ツール | |
| Notepad++で編集中の文書を保存し登録したファイルを実行します | |
| 主にコードのコンパイルに使用します | |
| 使い方 | |
| 1. このスクリプトをコンパイルして実行ファイル(nppcl.exe)作成 | |
| 2. nppcl.exe を notepad++.exe と同じフォルダにコピー | |
| 3. nppcl.ini を同じフォルダに新規作成 | |
| 内容は、1行目は 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <NotepadPlus> | |
| <UserLang name="HSP" ext="hsp as" udlVersion="2.1"> | |
| <Settings> | |
| <Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
| <Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="yes" /> | |
| </Settings> | |
| <KeywordLists> | |
| <Keywords name="Comments">00; 00// 01 02 03/* 04*/</Keywords> | |
| <Keywords name="Numbers, prefix1"></Keywords> | |
| <Keywords name="Numbers, prefix2">% $ 0b 0x</Keywords> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| キーボードマニア専用コントローラ入力取得モジュール | |
| 24鍵とスタート・セレクトボタン、ホイール上下の入力、複数のコントローラ対応 | |
| license: NYSL 0.9982 (http://www.kmonos.net/nysl/) | |
| tested: HSP 3.5b4 | |
| */ | |
| #module kminput |
NewerOlder