精彩的AutoHotKey允许您在键入时自动扩展缩写.
所以你可以有一个.ahk包含许多缩写的脚本,如下所示:
::btw::by the way
::iirc::if I remember correctly
Run Code Online (Sandbox Code Playgroud)
问题是,我不想明确写出我在这个文件中使用的所有缩写!
有没有带普通缩写的现成文件?
Rob*_*ink 13
自动扩展缩写非常个性化.这取决于你的词汇量.在我的情况下,随着时间的推移,列表已经增长,因为我根据需要添加了单词.
您可以使用例如这两个Ctrl+ Win+ Alt组合快速编辑.
^!#e:: ; Edit the script by Alt+Ctrl++Win+E
;run, C:\Program Files\PSPad editor\PSPad.exe "%A_ScriptDir%\AutoHotkey-Robert-Dell.ahk"
Edit
return
^!#r:: ; Reload the script by Alt+Ctrl++Win+R
TrayTip, Restarted, Restart,1
Reload ; Reload AHK File
Return
Run Code Online (Sandbox Code Playgroud)
我的修剪清单(大部分是荷兰语)看起来像这样.我经常使用斜杠(/)来结束,因为这样可以更容易地使用也可能是单词的一部分的缩写组合.通过使用斜杠,我可以轻松地在单词之后添加"s".
:?*:&&::&" "&
:?*:&^&::&" `; "&
:?*:&*&::&", "&
:?*:&@&::&"@"&
:?*:&$&::&"€"&
:?*:''::"{Space} ; Turn two single quotes into a single double quote on a Dutch Keyboard setting
:?*:1l/::" One-Liner"{space}
:*:=vl::=vlookup(
:*:ahk/::AutoHotKey
:*:ad/::Active Directory
:?*:adm/::administration
:*:am/::Account Management
:*:actm/::Active Monitoring
:?*:appl/::application
:*:bf/::Break/Fix
:*:bl/::Business Line
:*:btw/::by the way
:*:bu/::Buiness Unit
:*:cc/::Competence Center
:*:cert/::certification
:*:col/::colleagues
:*:config/::configuration
:*:cons/::consultant
:*:cp/::c-Projects
:*:ce/::Coördination Engineer
:*:co/::Coordinator
:*:e/::E.Nr
:*:emp/::employee
:*:eng/::engineer
:*:fe/::Field Engineer
:*:feg/::Field Engineering
:*:gk/::Global Knowledge
:*:hr/::Human Resources
:*:hw/::Hardware
:*:ie/::Incident Engineer
:*:inc/::incident
:*:inf/::information
:*:inst/::installation
:*:ka/::knowledge article
:*:kb/::Knowledge Base
:*:km/::Knowledge Management
:*:ko/::knowledge object
:*:l/::level
:*:lab/::laboratory
:*:ld/::Learning & Development
:*:maint/::maintenance
:?*:mgr/::manager
:?*:mgt/::management
:?*:mkt/::marketing
:*:MOC/::Microsoft Office Communicator
:*:mssp/::MS SharePoint
:*:ms/::Microsoft
:?*:ops/::operations
:?*:org/::organisation
:?*:prof/::profile
:?*:prod/::product
:?*:proj/::project
:?*:pos/::position
:*:ps/::Partnership
:*:pwd/::password
:*:q/::Qualification
:*:qd/::Quick & Dirty
:*:qn/::question
:*:qe/::Qualification Engineer
:*:sa/::support agent
:*:sc/::Sales Consulting
:*:scy/:: Sales Consultancy
:*:std/::standaard
:?*:svc/::service
:*:sme/::subject matter expert
:*:sm/::Sales & Marketing
:*:sw/::Software
:*:te/::Technical Engineer
:*:tc/::Technical Consultant
:*:tcy/::Technical Consultancy
:?*:trng/::training
:*:tpm/::Third Party Maintenance
:*:var/::Value Added Reseller
:*:vc/::VoIP Connect
; MAANDEN
:*:jan/::januari
:*:feb/::februari
:*:mrt/::maart
:*:apr/::april
:*:aug/::augustus
:*:sep/::september
:*:okt/::oktober
:*:nov/::november
:*:dec/::december
:*:$$::€ ; Two $$ will turn into a €
Run Code Online (Sandbox Code Playgroud)