🧭 Add Vim-style keyboard navigation to Windows File Explorer
- Vim Navigation:
h/j/k/ldirectional navigation - Quick Jump:
ggjump to top,Gjump to bottom - File Operations:
ycopy,xcut,ppaste,ddelete,rrename - Tabs:
tnew tab,qclose tab,1-8switch tabs - More:
anew folder,ocontext menu,Tabproperties,u/Uundo/redo
- Install AutoHotkey v1.1
- Double-click
main.ahkto run
Edit config.ini to enable/disable feature modules:
[Features]
Navigation=1 ; h/j/k/l/gg/G navigation
FileOps=1 ; y/x/p/d/r file operations
Tabs=1 ; t/q/1-8 tab management
Extras=1 ; a/o/Tab/u/U extra features1 = enabled, 0 = disabled
| Key | Function |
|---|---|
h |
Go to parent directory |
l |
Enter directory / Open file |
j / k |
Move down / up |
J / K |
Move down / up 5 items |
gg |
Jump to top |
G |
Jump to bottom |
y |
Copy |
x |
Cut |
p |
Paste |
d |
Delete to Recycle Bin |
D |
Permanently delete |
r |
Rename |
a |
New folder |
o |
Context menu |
Tab |
Show properties |
u |
Undo |
U |
Redo |
t |
New tab |
q |
Close tab |
1-8 |
Switch to tab |
Note: In edit mode (e.g., when renaming files), keys will input characters normally.
MIT License
🧭 为 Windows 文件资源管理器添加 Vim 风格键位导航
- Vim 导航:
h/j/k/l方向键导航 - 快速跳转:
gg跳到顶部,G跳到底部 - 文件操作:
y复制,x剪切,p粘贴,d删除,r重命名 - 标签页:
t新建,q关闭,1-8切换 - 更多:
a新建文件夹,o右键菜单,Tab属性,u/U撤销/重做
- 安装 AutoHotkey v1.1
- 双击运行
main.ahk
编辑 config.ini 文件来启用/禁用功能模块:
[Features]
Navigation=1 ; h/j/k/l/gg/G 导航
FileOps=1 ; y/x/p/d/r 文件操作
Tabs=1 ; t/q/1-8 标签页
Extras=1 ; a/o/Tab/u/U 额外功能1 = 启用, 0 = 禁用
| 按键 | 功能 |
|---|---|
h |
返回上级目录 |
l |
进入目录/打开文件 |
j / k |
下/上移动 |
J / K |
下/上移动 5 行 |
gg |
跳到顶部 |
G |
跳到底部 |
y |
复制 |
x |
剪切 |
p |
粘贴 |
d |
删除到回收站 |
D |
永久删除 |
r |
重命名 |
a |
新建文件夹 |
o |
右键菜单 |
Tab |
显示属性 |
u |
撤销 |
U |
重做 |
t |
新建标签页 |
q |
关闭标签页 |
1-8 |
切换标签页 |
注意:在编辑模式(如重命名文件时),按键会正常输入字符。
MIT License