Skip to content

Instantly share code, notes, and snippets.

@eihigh
eihigh / sands.ahk
Created March 2, 2024 06:01
SandS (shift and space) in ahk v2
#Requires AutoHotkey v2.0
press := 0 ; スペースキーを押しているかどうか。
shifted := 0 ; スペースキー押下中に何かの印字可能文字を押したかどうか。
pressedAt := 0 ; スペースキーを押した時間(msec)。
timeout := 300 ; pressedAt からこの時間が経過したら、もはや離したときにもスペースを発射しない。
hook := InputHook() ; スペースキー押下中に何かの印字可能文字を押したかどうか捕捉するフック。
$*Space:: {
@Shougo
Shougo / Emacs2016.md
Created April 24, 2016 01:44
anything.el/helm.el と unite.vim を比較してみた

anything.el/helm.el と unite.vim を比較してみた

  • anything.el や helm.el の話をします

  • Vim における anything.el 的存在である unite.vim の話をします

  • Emacs 全然分からないので、間違っているところがあったら突っ込み歓迎

  • さらにオマケもあるよ

if executable('fcitx-remote')
autocmd InsertLeave * call system('fcitx-remote -c')
else
autocmd InsertLeave * set iminsert=0
endif
@y2q-actionman
y2q-actionman / advent-2014-12-11.org
Last active January 17, 2021 07:08
Lisp Advent Calendar 2014-12-11

C系言語から Common Lisp に移行した時に戸惑ったこと

この文章は、 Lisp Advent Calendar 2014 の 12/11 担当分の記事として書かれました。

概要

C系言語から Common Lisp に移行した時、「どうして Lisp はこんなに書き辛いんだ?」と思っていたことを記憶しています。