-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini
More file actions
64 lines (57 loc) · 1.23 KB
/
Copy pathconfig.ini
File metadata and controls
64 lines (57 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[Keybindings]
move_up = i
move_down = k
move_left = j
move_right = l
scroll_up = comma
scroll_down = m
left_click = semicolon
right_click = apostrophe
middle_click = rshift
sticky_left_click = n
toggle_mode_internal = q
enter_region_select_mode = f
toggle_mode_hotkey = <alt>+a
exit_program = esc
command_mode_toggle = h
[Settings]
mouse_move_speed = 16
mouse_speed_shift_multiplier = 0.5
mouse_speed_capslock_multiplier = 0.2
delay_per_step = 0.010
run_as_admin = true
temp_data_dir = temp_data
[SmoothScrolling]
initial_velocity = 150.0
max_velocity = 1500.0
acceleration = 700.0
[Logging]
log_level = DEBUG
log_format = %(asctime)s - [%(levelname)s] - %(message)s
log_file_path = logs/main.log
log_max_size = 10485760
log_backup_count = 5
error_log_file = logs/error.log
[RegionSelectLayout]
row1 = 1 2 3 4 5
row2 = 6 7 8 9 0
row3 = w e r t y
row4 = z x c v b
[CommandModeMacros]
c = SEND_KEYS:<ctrl>+c
v = SEND_KEYS:<ctrl>+v
x = SEND_KEYS:<ctrl>+x
s = SEND_KEYS:<ctrl>+s
a = SEND_KEYS:<ctrl>+a
z = SEND_KEYS:<ctrl>+z
t = SEND_KEYS:<f11>
w = SEND_KEYS:<alt>+<f4>
[CommandModeMacrosNotes]
c = 复制 (Ctrl+C)
v = 粘贴 (Ctrl+V)
x = 剪切 (Ctrl+X)
s = 保存 (Ctrl+S)
a = 全选 (Ctrl+A)
z = 撤销 (Ctrl+Z)
t = 切换全屏
w = 关闭窗口 (Alt+F4)