forked from c9/docs.c9.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfccaa3
commit 804100a
Showing
15 changed files
with
62 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Git Blame | ||
|
||
<iframe width="640" height="360" src="https://www.youtube.com/embed/RSXaAlBgQ2s" frameborder="0" allowfullscreen></iframe> | ||
|
||
When you're working with git repositories, it's helpful to know who made a commit to a particualr piece of code. As it turns out, git has [a feature called `git blame`](http://www.kernel.org/pub/software/scm/git/docs/git-blame.html) that we've integrated directly into Cloud9 IDE. | ||
|
||
By using `git blame`, you'll be able to instantly discover who edited certain lines of code, when they edited it, and what their commit message at the time was. Clicking on a git commit also highlights other lines of code changed at the same time. To launch the git blame feature, open a file and navigate to [[menu: Tools, Git, Blame]]. |
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# The Editor | ||
|
||
The editor is the most important element of any IDE; that's why Cloud9 developed [ACE](http://ace.ajax.org). ACE is a high-performance code editor for the web that supports over 40 different langauges, over two dozen themes, and can still work faithfully on large documents (at last count, four million lines of code was the upper limit). It also contains a bevy of features you'd expect from traditional desktop editors. Among these include: | ||
|
||
* Undo and Redo support | ||
* Cut, Copy, and Paste functionality | ||
* Line manipulation, including: | ||
* Indenting and outdenting | ||
* Moving and copying lines up or down | ||
* Removing lines from any point | ||
* Splitting lines | ||
* Highlighting and commenting blocks of code | ||
* Removing words to the right or the left | ||
* Transposing letters | ||
* Code folding (including the entire file) | ||
* Converting cases | ||
* [Multiple cursor](./multiple_cursors.html) | ||
* [Autocompletion](./autocompletion.html) | ||
* [Code analysis and refactoring](./language_analysis.html) | ||
* Search in files with regular expressions | ||
* Intelligent selections, including: | ||
* Selecting to word right or left | ||
* Selecting to line end or start | ||
* Selecting to document end or start | ||
* Vim and Emacs keybindings | ||
* Line wrapping, to a defined column or the width of the browser window | ||
* Support for a command line | ||
* Support for spaces and real tabs | ||
|
||
In addition to Cloud9 IDE, ACE is also used by [Google](http://www.google.com/script/start/), [GitHub](https://github.com/blog/905-edit-like-an-ace), and [Khan Academy](http://ejohn.org/blog/introducing-khan-cs/). |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Editing Remote Wordpress Websites via FTP | ||
|
||
<iframe width="480" height="360" src="http://www.youtube.com/embed/3vZIKzALxyU" frameborder="0" allowfullscreen></iframe> | ||
<iframe width="640" height="480" src="https://www.youtube.com/embed/3vZIKzALxyU" frameborder="0" allowfullscreen></iframe> | ||
|
||
Did you know that you can use Cloud9 IDE to work on your Wordpress website? It's true, and incredibly easy. Obviously, you can't edit your posts on Wordpress using Cloud9, since they are stored in a database on your server. But you can edit pretty much every other aspect of your site. | ||
Did you know that you can use Cloud9 IDE to work on your Wordpress website? It's true, and incredibly easy. You can't edit your posts on Wordpress using Cloud9, since they are stored in a database on your server. But you can edit pretty much every other aspect of your site. | ||
|
||
To start, you'll need to [create a new FTP project](./ftp_workspaces.html). After that, enter your _wp-content_ folder, find the theme you're using on your website, and start editing its style. | ||
|
||
Thanks to [the preview button](./editor.html#previewButton) in the menu bar, you can also witness your changes as they happen, before commiting them to your server. | ||
Thanks to [the preview button](./ide_overview.html#previewButton) in the menu bar, you can also witness your changes as they happen, before commiting them to your server. |
This file contains 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
This file contains 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
This file contains 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