Last active
October 7, 2019 06:51
-
-
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
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
#Include <func> ; при помощи такой строки сможем в `intellisense` вызывать те параметры которые имеем в другом файле "Intellisense_file_2"! | |
;~ func_one("one") | |
func_two("two") | |
;~ Func ; пишем и видим в `intellisense` -- func_One -- func_Two ! | |
;~ func_One() ; Курсор ставим на название функции > Alt+F1 > будет прыжок на файл func.ahk |
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
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