Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active October 7, 2019 06:51
Show Gist options
  • Save rediffusion/2594de3829c15244c4ee993c67237ab0 to your computer and use it in GitHub Desktop.
Save rediffusion/2594de3829c15244c4ee993c67237ab0 to your computer and use it in GitHub Desktop.
Получение Intellisense для элементов, отсутствующих в вашем файл. Имеем 2 файла: C:\Users\NIKA\Documents\AutoHotkey\AHK Studio\Projects\test\test.ahk C:\Users\NIKA\Documents\AutoHotkey\AHK Studio\Projects\test\Lib\func.ahk
#Include <func> ; при помощи такой строки сможем в `intellisense` вызывать те параметры которые имеем в другом файле "Intellisense_file_2"!
;~ func_one("one")
func_two("two")
;~ Func ; пишем и видим в `intellisense` -- func_One -- func_Two !
;~ func_One() ; Курсор ставим на название функции > Alt+F1 > будет прыжок на файл func.ahk
func_One(b){
MsgBox % b
}
func_Two(b){
MsgBox % b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment