Last active
December 8, 2018 06:47
-
-
Save jaydeepkarena/3649ee144c28cbdfed9ec259a51ecbfa to your computer and use it in GitHub Desktop.
AutoHotKey Auto Correct
This file contains hidden or 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
;------------------------------------------------------------------------------ | |
; Settings | |
;------------------------------------------------------------------------------ | |
#NoEnv ; For security | |
#SingleInstance force | |
SetTitleMatchMode,2 | |
;Set tray icon | |
;Menu, Tray, Icon, AutoCorrect.ico | |
;------------------------------------------------------------------------------ | |
; Auto Correct Section | |
;------------------------------------------------------------------------------ | |
::dbhai::Dharmeshbhai | |
::gm::Good Morning{!} | |
::j@::[email protected] | |
::ahk::AutoHotKey | |
::dont::don't | |
::cant::can't | |
::tahy::thay | |
::fro::for | |
::aws::AWS | |
::doesnt::doesn't | |
::taks::task | |
::abt::about | |
::whre::where | |
::adn::and | |
::jsut::just | |
::vlaue::value | |
::tahv::thav | |
::bahi::bhai | |
::diff::different | |
::tow::two | |
::sovle::solve | |
::tahse::thase | |
::tahtu::thatu | |
::jse::jase | |
::laod::load | |
::gropu::group | |
::hvae::have | |
::iamge::image | |
::gird::grid | |
::dispaly::display | |
::smae::same | |
::Hisotyr::history | |
::vaule::value | |
::reprot::report | |
::improt::import | |
::kahbar::khabar | |
::lsit::list | |
::svae::save | |
::kahli::khali | |
::etnry::entry | |
::saem::same | |
::hwo::who | |
::calss::class | |
::tpye::type | |
::crasy::crash | |
::tahti::thati | |
::diam::Diamond Bidding | |
::info::information | |
::shaep::shape | |
::treu::true | |
#IfWinActive, Slack | |
{ | |
::?:::que{tab} | |
::dev::``Development`` | |
::sync::``sync`` | |
::doc::``doc`` | |
::GDoc::``Google Docs`` | |
::C#::``C{#}`` | |
::code::``code`` | |
::server::``server`` | |
::issue::``issue`` | |
::gdrive::``Google Drive`` | |
::api::``API`` | |
::aws::``AWS`` | |
::iphone::``iPhone`` | |
::ipad::``iPad`` | |
::tv::``Team Viewer`` | |
::apple::``Apple`` | |
} | |
#IfWinActive, Microsoft Visual Studio | |
{ | |
::sqlitedate::DateTime.Now.ToLongSQLiteDateString() | |
::userid::MasterPageCommon.GetUserId() | |
::mbox::RadMessageBox.Show("", "", MessageBoxButtons.OK, RadMessageIcon.Info); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment