Simple autohotkey v1 completion/hover
- Install null-ls (Language server)
- Install nvim-cmp (https://github.com/hrsh7th/nvim-cmp)
use('DasGandlaf/nvim-autohotkey')
require('nvim-autohotkey')
cmp.setup.filetype({ 'autohotkey' }, {
sources = { { name = 'autohotkey' } },
})
Docs from here: https://www.autohotkey.com/docs/v1/lib/
(Took html, online converter to remove html, manually converted to lua)
usefulStuff
folder contents from here: https://www.autohotkey.com/boards/viewtopic.php?f=7&t=27321&p=131642#p131642
- Signature help once null-ls supports it: jose-elias-alvarez/null-ls.nvim#960
I probably won't maintain this repo, if you want to work on it, feel free fork it.
The folder usefulStuff
has some useful stuff (wow) regarding ahk tooltips, documentation, etc.