-
Notifications
You must be signed in to change notification settings - Fork 0
How to Use Brackets
Brackets is built with HTML, CSS and JS, and currently runs as a desktop application in a thin native shell so that it can access your local files. Brackets isn't ready for general use yet, but if you like living on the bleeding edge, you can find instructions on how to get Brackets running below.
The latest "stable" builds can be downloaded from the downloads page. Use the .dmg (Mac) or .msi (Win) links -- the generic download button at the top will not work!
If you want to download and run the absolutely latest version of the code, you will have to pull it directly from GitHub. See How to Hack on Brackets for details on pulling the source.
Currently, most of the functionality in Brackets is available from the in-window menus (not the standard native menus). These will be moved out to the native menus in the desktop app eventually.
You can open a file from File > Open (Ctrl/Cmd-O) in the in-window Brackets menu, or open a folder in the file tree on the left using File > Open Folder. It's a good idea to open the root of whatever project you're working on in the file tree, since other Brackets features search in the current tree. You can easily get back to previous projects you've worked on by clicking on the project's root folder name in the file tree.
Unlike other editors that show open files in tabs, Brackets has a notion of the "working set", which is displayed above the file tree. Just clicking on files in the file tree doesn't automatically add them to the working set, so you can quickly browse through different files without opening them. To add a file to the working set, just make an edit in it, or double-click it in the file tree.
Brackets currently has color-coding for HTML, JS, CSS, and LESS files. It also has some basic code hinting for HTML tags and attribute names and values. They'll pop up automatically as you type tags, or you can hit Ctrl-Space to bring them up manually. More code hinting will come in future sprints.
One of the goals of Brackets is to make it easy to make quick edits to different bits of code without having to jump around between files.
Currently, Brackets has an early implementation of this. If you're in an HTML file, and you put the cursor inside a class or id attribute or a tag name, you can hit Ctrl/Cmd-E (for "edit"). Brackets will search the CSS files in the file tree for relevant rules, then open up an inline editor embedded in the HTML file that lets you make quick tweaks to one of the rules.
On the right side of the inline editor, Brackets shows the list of all rules that might be relevant to the selected tag/class/id. You can switch between the rules by clicking on them in the list, or using Alt-Up/Down Arrow.
You can make changes in the inline editor and save them, then close the editor by hitting Cmd-E again. Edits you make in the inline editor will be properly applied in Live Development mode (see below).
Some things to note about this feature:
- Brackets doesn't take the cascade, tag context, etc. into account.
- Brackets doesn't check to see which CSS files are linked into the current HTML file--it searches all files in the file tree.
Eventually Brackets could leverage inline editing for lots of other kinds of things--in addition to showing relevant JS code, you could imagine adding inline visual tools like gradient and shadow editors for the selected CSS rule.
Another goal of Brackets is to bridge the gap between code editing and in-browser inspection. Currently, developers use tools like Firebug or the WebKit Web Inspector to inspect their page, debug problems, and try out quick tweaks to CSS properties in order to fix layout issues. Once they're done, they then have to remember what they did and then go back to their editor to fix the problems in the source code.
With Live Development, the idea is to tie Brackets more closely to the browser, so that you can make changes and debug from Brackets itself, and see the results instantly in the browser.
The initial implementation of this in Brackets is for CSS editing. If you open an HTML file, and then click the "lightning bolt" icon on the right side of the toolbar, Brackets will open the HTML file in Chrome. If you then make edits to CSS files used by that HTML file (either in an inline editor or just by opening up the CSS file), your edits will be instantly reflected in Chrome as you type.
Some limitations of the current implementation:
- It only works with Chrome as the target browser.
- It relies on the remote debugging features in Chrome, which are enabled by a command-line flag. If you're already running Chrome when you hit the Go Live button, Brackets will ask if you want to restart Chrome with remote debugging enabled, and if you say yes, it will go ahead and do it for you.
- Only one HTML file can have a live connection to the browser at a time--if you switch to a different HTML file, Brackets will close the original preview and open one for the new file.
- You cannot specify a URL to load the file from.
As with quick edit, there are lots of ideas for how to extend this, including highlighting DOM nodes in the browser from Brackets, clicking on an item in the browser to jump back to its source code in Brackets, and setting JS breakpoints from Brackets.
A number of features, including Find/Replace, Find in Files, and everything in the Debug menu, aren't "official" features yet. They don't have final UI, aren't completely implemented, and might have significant bugs.
A couple of notes on unofficial features:
- By default, JSLint runs on all JS files and shows its results in a panel at the bottom. If your file is clean, you'll see a gold star in the upper right corner. JSLint is very picky about formatting. JSLint is very picky about a lot of things. If you want to turn it off, uncheck Debug > Enable JSLint. This setting is global and remembered across runs.
- Navigate > Quick Open (Ctrl/Cmd-Shift-O) brings up a Quick Open field to let you quickly switch to another file from the keyboard. You can start typing a filename in the field, then down-arrow or use the mouse to select one of the files that matches.
- You can also use Ctrl/Cmd-T to jump to a particular method definition in the current JS file, or Ctrl/Cmd-L to jump to a line number.
- You can run the Brackets unit test suite from Debug > Run Tests.
Here are some keyboard shortcuts that are worth knowing. There will be more as features are added.
Ctrl/Cmd-E | Open/close the inline editor. |
Alt-Up/Down Arrow | Switch between rules in the inline editor. |
Ctrl-Space | Bring up code hints, if applicable. |
Ctrl/Cmd-Shift-O | Bring up the Quick Open prompt. |
Ctrl/Cmd-L | Go to a line in the current file. |
Ctrl/Cmd-T | Go to a method in the current file. |
Ctrl/Cmd-Shift-H | Show/hide the sidebar. |
Ctrl/Cmd-Alt-P | Live file preview. |