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
// https://replication.hatenablog.com/entry/2014/03/06/002812 | |
// シェルオブジェクトの作成 | |
var oWsh = new ActiveXObject("WScript.Shell"); | |
// 編集中ファイルのフルパスを取得する | |
var path = path = GetFilename; | |
// 格納先フォルダを取得する | |
var parPath = path.replace(/[^\\]*$/, "" ); | |
// 親フォルダをgoneovimに投げる |
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
;***** [ 関連付け専用版設定例(esExt5.ini)] ***** | |
;基本動作設定 | |
; | |
[system] | |
@menu=center | |
@dist=500 | |
%end | |
; -------------------------------------------------------------------- |
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
// https://qiita.com/heizitsutomo/items/e790fd380d548d75a8d0 | |
var fs = new ActiveXObject("Scripting.FileSystemObject"); | |
var template_file = fs.OpenTextFile("C:/tools/sakura/template/weekly.md", 1); | |
var text = template_file.ReadAll(); | |
Editor.InsText(text); | |
template_file.Close(); |
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
//キーボードマクロのファイル | |
GoLineEnd(); | |
Char(13); // 文字入力 | |
Char(45); // 文字入力 | |
IndentSpace(0); // SPACEインデント |
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
// https://replication.hatenablog.com/entry/2014/03/06/002812 | |
// シェルオブジェクトの作成 | |
var oWsh = new ActiveXObject("WScript.Shell"); | |
// 編集中ファイルのフルパスを取得する | |
var path = path = GetFilename; | |
// 格納先フォルダを取得する | |
var parPath = path.replace(/[^\\]*$/, "" ); | |
// 親フォルダをTresGrepに投げる |
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
ExecCommand("C:/tools/esExt/esExt5.exe $F", 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
@echo off | |
for /r K:\Dropbox\DropsyncFiles\vnotebook %%i in (_v_attachments) do ( | |
rd /s /q %%i | |
) |
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
@echo off | |
del C:\tools\cmder_mini\config\clink_errorlevel_*.txt |
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
@echo off | |
rem https://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q12185308797?fr=smp_ogp_other | |
rem Shift_JIS | |
powershell -Command "&{Get-ClipBoard}" > K:\Dropbox\DropsyncFiles\vnotebook\0000_inbox\memo.txt |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Control Panel\Desktop] | |
"LowLevelHooksTimeout"="4000" |
NewerOlder