yekingyan 最近的时间轴更新
yekingyan's repos on GitHub
HTML · 17 人关注
Backup-Douban-Broadcast
备份豆瓣广播
TypeScript · 15 人关注
obsidian-open-in-other-editor
Open current active file in gVim or VScode.
JavaScript · 13 人关注
anki_search_on_web
在google、bing、yahoo等搜索引擎上,同步搜索本地的Anki数据。Tampermonkey script
Python · 4 人关注
Weibo
个人微博备份
Python · 2 人关注
flypy-yk
小鹤双拼五笔形,将鹤形补码改为五笔
Python · 1 人关注
rime-wubi-86-single
【五筆字型】輸入方案_含86单字词库
Python · 0 人关注
Algorithms_in_the_Python
用Python实现的一些算法
JavaScript · 0 人关注
analysis-account
Python · 0 人关注
anki-connect
Anki plugin to expose a remote API for creating flash cards.
JavaScript · 0 人关注
close_danmaku
默认关闭弹幕
Python · 0 人关注
delta_update
增量更新模块
Vue · 0 人关注
Django-drf-vue
Shell · 0 人关注
doubi
一个逗比写的各种逗比脚本~
Python · 0 人关注
Flask_for_my_web
Go · 0 人关注
go-base-web
JavaScript · 0 人关注
HandyEditor
HandyEditor is a WYSIWYG rich text web editor from Catfish CMS that is lightweight, easy to use, customizable, multi-language supported and user-focused.
Python · 0 人关注
leetcode
Python · 0 人关注
memory_cache
内存缓存结果
Python · 0 人关注
Mind_map
Lua · 0 人关注
nvimdots
A well configured and structured Neovim.
TypeScript · 0 人关注
obsidian-front-matter-title
Add Tab Number For Front Matter Title
JavaScript · 0 人关注
obsidian-releases
Community plugins list, theme list, and releases of Obsidian.
JavaScript · 0 人关注
obsidian-smart-connections
Chat with your notes in Obsidian! Plus, see what's most relevant in real-time! Interact and stay organized. Powered by OpenAI ChatGPT, GPT-4 & Embeddings.
0 人关注
Obsidian_to_Anki
Script to add flashcards from text/markdown files to Anki
Python · 0 人关注
python_2.7_practice
学习python2.7时的练手
JavaScript · 0 人关注
RomeCity
cocos creator game
Vim Script · 0 人关注
vim
轻量级 Vim 配置框架,全中文注释
Vue · 0 人关注
vue-editor
对wangEditor的封装组件,v-model
HTML · 0 人关注
web_crawler
by python2.7.6
Python · 0 人关注
web_practice
yekingyan

yekingyan

V2EX 第 331271 号会员,加入于 2018-07-23 13:23:16 +08:00
yekingyan 最近回复了
10 天前
回复了 kinboy 创建的主题 程序员 有没有鼠标连击过滤器之类的软件
我前几天碰到同样的问题的,罗技 G102 。
可以通过 ahk 解决。下载 AHK 软件并安装,将下面内容保存为 main.ahk 文件,然后以管理员身份运行这个文件

```ahk
#Requires AutoHotkey v2.0

class Timer { ; 延时触发一次
static PRIORITY := -1

__New(callback, delay := 1000) {
this.count := 0
this.delay := delay
this.timer := ObjBindMethod(this, "Tick")
this.isWait := false
this.callback := callback
}

Start() {
this.isWait := true
SetTimer(this.timer, -this.delay, Timer.PRIORITY)
return this
}

Stop() {
SetTimer(this.timer, 0)
this.isWait := false
return this
}

ReRun(delay := "") {
if (delay != "") {
this.delay := delay
}
this.count := 0

this.Stop()
this.Start()
return this
}

Tick() {
this.count++
this.callback()
this.isWait := false
}

isWaiting() {
return this.isWait
}
}

~LButton:: {
KeyWait "LButton"
BlockInput(true)
Timer((t) => (BlockInput(false)), 30).Start() ; 无视 30 毫秒内双击
}

```
https://github.com/yekingyan/flypy-yk
安卓安装同文输入法,可以试试这个,直接五笔与小鹤双拼混输。还能用小鹤双拼反查五笔
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   987 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 23:40 · PVG 07:40 · LAX 16:40 · JFK 19:40
Developed with CodeLauncher
♥ Do have faith in what you're doing.