精彩的AutoHotKey允许您在键入时自动扩展缩写。
所以你可以有一个.ahk
脚本,里面有很多这样的缩写:
::btw::by the way
::iirc::if I remember correctly
问题是,我不想明确写出我在这个文件中使用的所有缩写!
是否存在具有常用缩写的现成文件?
答案 0 :(得分: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
我的修剪清单(大部分是荷兰语)看起来像这样。 我经常使用斜杠(/)来结束,因为这样可以更容易地使用也可能是单词的一部分的缩写组合。 通过使用斜线,我可以轻松地例如在单词后添加“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 €
答案 1 :(得分:0)
简短回答:应该有,但还没见过。我已经通过医疗转录和#34;解决了这个问题。添加了文件夹(如果你搜索这个,你可以通过一些解析来构建它)
我有几个类似的列表,用于不同的语言(编程语言(包括许多短语),瑞典语,英语),并且由于使用Breevy来组织它们(因为它更容易使用> 1000缩写)。它有一个你要找的内容列表,如果你在线查看,你可以找到其他列表(你必须修改它们以适应AutoHotkey脚本语言)。