ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Hacklang Typechecker and Autocompletion

by SiebelsTim ALL

Hack's typechecker & autocompletion inside Sublime Text

Details

Installs

  • Total 6K
  • Win 3K
  • Mac 1K
  • Linux 885
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0
Mac 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0

Readme

Source
raw.​githubusercontent.​com

Installation

Download the zip-archive and move it into Sublime Text's config folder.

wget https://github.com/SiebelsTim/hack-sublime/raw/master/Hack.sublime-package
mv Hack.sublime-package ~/.config/sublime-text-3/Installed\ Packages/Hack.sublime-package

Change the folder to sublime-text-2 if you use Sublime Text 2

How to use

The typechecker is triggered on saving files. The files need to begin with <?. So both <?php and <?hh will work. The filetype is ignored.

Autocompletion is triggered on your keyboard shortcut. Look it up under Preferences -> Key Bindings and search for auto_complete.

Windows

If you use Windows you can install a virtual machine running linux. This plugin will then log into ssh and run hh_client remotely. You'll have to have your ssh credentials setup so you don't have to enter your password.

This plugin then defines three new settings. - hack_ssh_enable - enables ssh support - hack_ssh_folder - the remote folder to run hh_client on - hack_ssh_address - user@ipaddress

The plugin will fall back to locally executing hh_client if one of these settings is missing.

Example Preferences.sublime-settings

To edit your settings go to Preferences -> Settings - User

{
  "hack_ssh_folder": "/home/tim/project/",
  "hack_ssh_address": "tim@10.0.0.1",
  "hack_ssh_enable": true
}