Sebuah program auto correction Bahasa Melayu. Ditulis sepenuhnya dalam bahasa AHK.
- Membekalkan kemudahan semakan dan pembetulan swadaya Bahasa Melayu secara umum dan dalam bidang teknologi.
- Menyediakan ciri singkatan perkataan dengan masukan pengguna.
Prasyarat: Pasang dahulu program AutoHotkey dari laman ahkscript.org.
git clone https://github.com/Nafizyo/swa-bm.git
- Muat turun dan unzip repo.
- Cabangkan (fork) ke repo anda, kemudian clone atau muat turun.
- Sunting
Tetapan.ini
mengikut keperluan - Jalankan
Utama.ahk
.
|-- Utama.ahk
|-- Tetapan.ini
|-- Scripts\
| |-- AppSpecific.ahk
| |-- Functions.ahk
| |-- HotStrings.ahk
| `-- Hotkeys.ahk
|-- Lib\
`-- Util\
Universal shortcuts
; Ctrl Alt R to reload entire script
^!r::Reload
Auto-expanding Hotstrings are stored here
; Single Line
::btw::by the way
; Multi-Line
::btw::
MsgBox You typed "btw".
Return
Re-usable functions, automatically loaded by Main.ahk
Add(x, y)
{
return x y
}
This file is organizing application specific shortcut or hotstrings. This is achieved using #If or #IfWin directives
; Control Click selection in Notepad only
#IfWinActive ahk_class Notepad
^LButton::
Send {LButton 2}
Return
#IfWinActive