

- How to register sublime text 3 how to#
- How to register sublime text 3 install#
- How to register sublime text 3 full#
- How to register sublime text 3 code#
- How to register sublime text 3 series#
You can tweak all sorts of settings, but you're primarily either going to run it every time you save your file (good, but can get annoying), or every time you trigger it from the command palette (press super-shift-p and then type until you get "PHP Code Sniffer: Sniff this file") or keyboard shortcut ( ctrl-super-shift-s by default).


There's a package named Sublime PHPCS that brings PHP_CodeSniffer, PHP's linter, PHP Mess Detector, and Scheck (?) to bear on your code. Code sniffing and PHP_CodeSniffer Sublime PHPCS Note: I originally wanted to suggest using the super modifier, so it would be just like PHPStorm however, that would override Sublime Text's "hold super and click to get multiple cursors" behavior, so I didn't. You just taught Sublime Text this: "when I hold ctrl and click button one, fire the goto_definition command." Done! ( original source) If you don't have one, go here:Ĭreate Default (Linux).sublime-mousemap in ~/.config/sublime-text-3/Packages/UserĬreate Default (OSX).sublime-mousemap in ~/Library/Application Support/Sublime Text 3/Packages/UserĬreate Default (Windows).sublime-mousemap in %appdata%\Sublime Text 3\Packages\User FYI, in Sublime Text CMD (or windows' ctrl key or whatever it is on other systems) is called "Super".įirst, create a user mousemap file. Sublime PHP Companion makes it easy to right click on functions and go to their definitions, but this shortcut brings back PHPStorm's CMD-click-to-definition.
How to register sublime text 3 full#
This isn't quite the same as full userland-code-sensitive autocompletion, but it helps a lot. Sublime PHP Companion doesn't sniff your classes and give you autocompletion, sadly, but SublimeAllAutocomplete does register the names of all symbols (functions, classes, etc.) in any files you have open in other tabs and add those to the autocomplete register. But for day-to-day work, this is a huge boost in the PHP-code-knowledge area. The package isn't perfect, and it is clearly not as bright as PHPStorm is when it comes to detecting namespaces and parsing some weird edge cases. goto_definition_scope ( shift+F12) - Same as Sublime Text's native goto_definition (described below), but scoped in a PHP-aware manner.import_namespace ( F8) - Adds the namespace for the current file based on the file's path.expand_fqcn ( F9) - Same as find_use but instead of expanding the class in the import block, it expands its FQCN inline.find_use ( F10) - When your cursor is over a class name, this command makes it simple to use (import) that class.
How to register sublime text 3 how to#
Learn more about how to set up PHPCompanion keymapping here. ~~They're mapped to certain keys by default, but you can always re-map them.~~ Update: there is no keymapping by default anymore.
How to register sublime text 3 series#
Like most packages, it contains a series of actions you can perform. The most significantly PHP-focused package for Sublime Text is called Sublime PHP Companion. Unless otherwise specified, every package after this should be installed using Package Control.
How to register sublime text 3 install#
If you haven't yet, Go install Package Control now.

Let's start with a quick list of ways that PHPStorm really sets itself apart for me. We love the code intelligence we get from PHPStorm, but still miss the speed, quick boot-up, and convenience of Sublime Text.īefore I blindly assume PHPStorm is the only way to go, I wanted to see: Can I bring the things a PHP-focused IDE provides PHP developers back to Sublime Text and get the best of both worlds? A lot of folks in the PHP community have been checking out PHPStorm lately, including myself and most of the developers I work with.
