├── .gitignore ├── Capsez.ahk.pdf ├── EZtools(Ez版TC、capsez、MPV使用说明及快捷键列表).html ├── README.md ├── capsez.ahk ├── capsez_myapps.ahk ├── capsez_mymenus.ini └── capsez键鼠增强.md /.gitignore: -------------------------------------------------------------------------------- 1 | # http://www.gnu.org/software/automake 2 | 3 | Makefile.in 4 | /ar-lib 5 | /mdate-sh 6 | /py-compile 7 | /test-driver 8 | /ylwrap 9 | 10 | # http://www.gnu.org/software/autoconf 11 | 12 | /autom4te.cache 13 | /autoscan.log 14 | /autoscan-*.log 15 | /aclocal.m4 16 | /compile 17 | /config.guess 18 | /config.h.in 19 | /config.sub 20 | /configure 21 | /configure.scan 22 | /depcomp 23 | /install-sh 24 | /missing 25 | /stamp-h1 26 | 27 | # https://www.gnu.org/software/libtool/ 28 | 29 | /ltmain.sh 30 | 31 | # http://www.gnu.org/software/texinfo 32 | 33 | /texinfo.tex 34 | 35 | # http://www.gnu.org/software/m4/ 36 | 37 | m4/libtool.m4 38 | m4/ltoptions.m4 39 | m4/ltsugar.m4 40 | m4/ltversion.m4 41 | m4/lt~obsolete.m4 42 | autom4te.cache 43 | -------------------------------------------------------------------------------- /Capsez.ahk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coralsw/CapsEz/190bca2772a30ab19a178e00b237931b5e713fec/Capsez.ahk.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coralsw/CapsEz/190bca2772a30ab19a178e00b237931b5e713fec/README.md -------------------------------------------------------------------------------- /capsez.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coralsw/CapsEz/190bca2772a30ab19a178e00b237931b5e713fec/capsez.ahk -------------------------------------------------------------------------------- /capsez_myapps.ahk: -------------------------------------------------------------------------------- 1 | notepad_trim: 2 | send,^c{Blind}^v 3 | return 4 | 5 | notepad_cleanWhitespace: 6 | send,^c{Blind}^v 7 | return 8 | 9 | write_trim: 10 | send,^c{Blind}^v 11 | return 12 | 13 | 14 | excel_SortPowerTable: 15 | ControlClick,Edit1,A 16 | sleep,100 17 | Send,A3:H40{Enter} 18 | Sleep,100 19 | Send,!hss 20 | return 21 | 22 | -------------------------------------------------------------------------------- /capsez_mymenus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coralsw/CapsEz/190bca2772a30ab19a178e00b237931b5e713fec/capsez_mymenus.ini -------------------------------------------------------------------------------- /capsez键鼠增强.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coralsw/CapsEz/190bca2772a30ab19a178e00b237931b5e713fec/capsez键鼠增强.md --------------------------------------------------------------------------------