This file contains 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://hake.hatenablog.com/entry/20170812/p1 | |
' 更新用マクロを動作させるExcelで以下の設定を行う | |
' ファイル | |
' →オプション | |
' →セキュリティセンター | |
' →セキュリティセンターの設定 | |
' →マクロの設定 | |
' →VBAプロジェクトオブジェクトモデルへのアクセスを信頼する。にチェック |
This file contains 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
import sys | |
import os | |
import datetime | |
import pyauto | |
from keyhac import * | |
def configure(keymap): |
This file contains 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
let locale = "jp" | |
let barposition = "bottom" | |
let hintcharacters = "asdfghjkl" | |
let searchlimit = 5 | |
set noautofocus | |
set cncpcompletion | |
set nohud | |
unmap s u o yy yY yh yA y i v V x X | |
iunmap <C-o> <C-u> <C-y> <C-k> | |
map <C-d> scrollPageDown |
This file contains 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
Process: Vim [1643] | |
Path: /Applications/MacVim.app/Contents/MacOS/Vim | |
Identifier: Vim | |
Version: 0 | |
Code Type: X86-64 (Native) | |
Parent Process: zsh [528] | |
Responsible: Terminal [217] | |
User ID: 501 | |
Date/Time: 2015-12-12 10:44:04.707 +0900 |
This file contains 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
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer) | |
- If lang_mode = True Then | |
+ If lang_mode = "jp" Then | |
TextBox1.IMEMode = fmIMEModeHiragana | |
Else |
This file contains 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
diff --git a/autoload/vimproc/parser.vim b/autoload/vimproc/parser.vim | |
index b1965ad..dcd65e8 100644 | |
--- a/autoload/vimproc/parser.vim | |
+++ b/autoload/vimproc/parser.vim | |
@@ -779,7 +779,7 @@ function! s:parse_double_quote(script, i) "{{{ | |
elseif has_key(escape_sequences, script[i]) | |
let arg .= escape_sequences[script[i]] | |
else | |
- let arg .= '\' . script[i] | |
+ let arg .= script[i] |
This file contains 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
// ==UserScript== | |
// @name delete kindle item | |
// @namespace [email protected] | |
// @include https://www.amazon.com/gp/digital/fiona/manage* | |
// @include https://www.amazon.co.jp/gp/digital/fiona/manage* | |
// @version 1 | |
// ==/UserScript== | |
jQuery('<button id="delete_all_item" style="margin-left:10px;">delete all</button>').insertAfter('#searchTextGoButton'); |
This file contains 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
function! s:source.get_keyword_pos(cur_text) | |
let col = col('.') | |
let pos = 0 | |
while 1 | |
let idx = stridx(a:cur_text, '@', pos + 1) | |
if idx == -1 || idx >= col | |
break | |
endif | |
let pos = idx |
NewerOlder