forked from zookatron/sublime-collaboration
-
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.
Added license, simplified protocol, cleaned up a lot of code.
- Loading branch information
Tim Zook
committed
Oct 5, 2012
1 parent
5f95ecf
commit 2361d44
Showing
13 changed files
with
497 additions
and
1,137 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[ | ||
{ "keys": ["ctrl+alt+c"], "command": "connect_to_server" }, | ||
{ "keys": ["ctrl+alt+d"], "command": "disconnect_from_server" }, | ||
{ "keys": ["ctrl+alt+o"], "command": "open_document" }, | ||
{ "keys": ["ctrl+alt+s"], "command": "toggle_server" } | ||
{ "keys": ["ctrl+alt+c"], "command": "collab_connect_to_server" }, | ||
{ "keys": ["ctrl+alt+d"], "command": "collab_disconnect_from_server" }, | ||
{ "keys": ["ctrl+alt+o"], "command": "collab_open_document" }, | ||
{ "keys": ["ctrl+alt+s"], "command": "collab_toggle_server" }, | ||
{ "keys": ["ctrl+alt+a"], "command": "collab_add_current_document" } | ||
] |
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,22 @@ | ||
[ | ||
{ | ||
"caption": "Collaboration: Connect To Server", | ||
"command": "collab_connect_to_server" | ||
}, | ||
{ | ||
"caption": "Collaboration: Disconnect From Server", | ||
"command": "collab_disconnect_from_server" | ||
}, | ||
{ | ||
"caption": "Collaboration: Toggle Local Server", | ||
"command": "collab_toggle_server" | ||
}, | ||
{ | ||
"caption": "Collaboration: Open Document", | ||
"command": "collab_open_document" | ||
}, | ||
{ | ||
"caption": "Collaboration: Add Current Document", | ||
"command": "collab_add_current_document" | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.