/SciTE_rc1/platforms.properties

http://autohotkey-cn.googlecode.com/ · Properties File · 68 lines · 56 code · 11 blank · 1 comment · 0 complexity · 3d40ba0b3dbccdb6a919ee029be75f53 MD5 · raw file

  1. ; SciTE settings for AutoHotkey platforms
  2. ;
  3. ; Do NOT edit this file!
  4. ;
  5. Compiler="$(LocalAHK)" "$(SciteDefaultHome)\tools\LaunchCompiler.ahk"
  6. ; Default platform
  7. .platform Default
  8. .if Default
  9. ; Run (F5), Debug (F7), Compile (Ctrl+F7) & Help (F1) commands
  10. command.go.$(file.patterns.ahk)="$(AutoHotkeyDir)\AutoHotkey.exe" /ErrorStdOut "$(FilePath)" $(1) $(2) $(3) $(4)
  11. #~ command.build.$(file.patterns.ahk)="$(LocalAHK)" "$(SciteDefaultHome)\debugger\SciTEDebug.ahk" "$(AutoHotkeyDir)\AutoHotkey.exe"
  12. command.build.$(file.patterns.ahk)=$(Compiler) /in "$(FilePath)"
  13. command.compile.$(file.patterns.ahk)=$(Compiler) /in "$(FilePath)" /gui
  14. command.help.$(file.patterns.ahk)=$(CurrentWord)!$(AutoHotkeyDir)\AutoHotkey.chm
  15. AutoHotkey=$(AutoHotkeyDir)\AutoHotkey.exe
  16. .end
  17. ; AutoHotkey_L platforms
  18. ; These require the AutoHotkey_L Porting Pack
  19. .condplat ANSI FileExist, %AhkDir%\AutoHotkey_L\AutoHotkey_La.exe
  20. .condplat Unicode FileExist, %AhkDir%\AutoHotkey_L\AutoHotkey_Lw.exe
  21. .condplat x64 FileExist, %AhkDir%\AutoHotkey_L\AutoHotkey_L64.exe
  22. .if ANSI, Unicode, x64
  23. .if ANSI AutoHotkeyLSuffix=a
  24. .if Unicode AutoHotkeyLSuffix=w
  25. .if x64 AutoHotkeyLSuffix=64
  26. AutoHotkeyLDir=$(AutoHotkeyDir)\AutoHotkey_L
  27. AutoHotkeyL=$(AutoHotkeyLDir)\AutoHotkey_L$(AutoHotkeyLSuffix).exe
  28. AutoHotkeyLSC=$(AutoHotkeyLDir)\AutoHotkeySC_L$(AutoHotkeyLSuffix).bin
  29. AutoHotkey=$(AutoHotkeyL)
  30. ; Run (F5), Debug (F7), Compile (Ctrl+F7) & Help (F1) commands
  31. command.go.$(file.patterns.ahk)="$(AutoHotkeyL)" /ErrorStdOut "$(FilePath)" $(1) $(2) $(3) $(4)
  32. command.build.$(file.patterns.ahk)="$(LocalAHK)" "$(SciteDefaultHome)\debugger\SciTEDebug.ahk" "$(AutoHotkeyL)"
  33. command.compile.$(file.patterns.ahk)=$(Compiler) "$(FilePath)" "$(AutoHotkeyLSC)"
  34. command.help.$(file.patterns.ahk)=$(CurrentWord)!$(AutoHotkeyLDir)\AutoHotkey_L.chm
  35. .end
  36. ; AutoHotkey v2 alpha platforms
  37. .condplat v2(x86) FileExist, %AhkDir%\v2-alpha\x86\AutoHotkey.exe
  38. .condplat v2(x64) FileExist, %AhkDir%\v2-alpha\x64\AutoHotkey.exe
  39. .if v2(x86), v2(x64)
  40. .if v2(x86) AutoHotkeyDir_v2=$(AutoHotkeyDir)\v2-alpha\x86
  41. .if v2(x64) AutoHotkeyDir_v2=$(AutoHotkeyDir)\v2-alpha\x64
  42. ; Run (F5), Debug (F7), Compile (Ctrl+F7) & Help (F1) commands
  43. command.go.$(file.patterns.ahk)="$(AutoHotkeyDir_v2)\AutoHotkey.exe" /ErrorStdOut "$(FilePath)" $(1) $(2) $(3) $(4)
  44. command.build.$(file.patterns.ahk)="$(LocalAHK)" "$(SciteDefaultHome)\debugger\SciTEDebug.ahk" "$(AutoHotkeyDir_v2)\AutoHotkey.exe"
  45. ;command.compile.$(file.patterns.ahk)=$(Compiler) "$(FilePath)"
  46. command.help.$(file.patterns.ahk)=$(CurrentWord)!$(AutoHotkeyDir)\AutoHotkey.chm
  47. AutoHotkey=$(AutoHotkeyDir_v2)\AutoHotkey.exe
  48. .end
  49. ; DO NOT USE YET
  50. ;command.name.1.$(file.patterns.ahk)=Quick run
  51. ;command.1.$(file.patterns.ahk)="$(AutoHotkey)" "$(FilePath)" $(1) $(2) $(3) $(4)
  52. ;command.shortcut.1.$(file.patterns.ahk)=Ctrl+Shift+F5
  53. ;command.subsystem.1.$(file.patterns.ahk)=2
  54. ;command.name.2.$(file.patterns.ahk)=Just-In-Time debugger
  55. ;command.2.$(file.patterns.ahk)="$(AutoHotkey)" /ErrorStdOut "$(SciteDefaultHome)\debugger\SciTEDebug.ahk" /attach
  56. ;command.shortcut.2.$(file.patterns.ahk)=Ctrl+Shift+F7
  57. ;command.subsystem.2.$(file.patterns.ahk)=2