-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
; ========== CapsLockX ========== | ||
; 注:Save as UTF-8 with BOM please | ||
; 名称:不折行回车 | ||
; 描述:不折行回车 | ||
; 作者:snomiao | ||
; 支持:https://github.com/snolab/CapsLockX/issues/32 | ||
; ========== CapsLockX ========== | ||
|
||
return | ||
|
||
#if CapsLockXMode | ||
|
||
; refs: | ||
; https://github.com/snolab/CapsLockX/issues/32 | ||
; [[建议]增加backspace删除整行 · Issue #33 · snolab/CapsLockX]( https://github.com/snolab/CapsLockX/issues/33 ) | ||
|
||
; tested in vscode multiline mode | ||
Enter:: SendEvent {End 2}{Enter} ; 行尾回车 | ||
BackSpace:: SendEvent {Home 2}{End}{Home 2}+{End 2}+{Right}{Delete} ; 删除整行 |