Skip to content
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.

Commit

Permalink
Changed references of Delete to Remove, add documentation for menu it…
Browse files Browse the repository at this point in the history
…ems and the revert keyboard shortcut
  • Loading branch information
wbond committed Mar 16, 2011
1 parent ec30e44 commit 5107ad9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Tortoise/Context.sublime-menu
Expand Up @@ -4,6 +4,6 @@
{ "command": "tortoise_diff_file", "caption": "Tortoise Diff…" },
{ "command": "tortoise_add_file", "caption": "Tortoise Add…" },
{ "command": "tortoise_revert_file", "caption": "Tortoise Revert…" },
{ "command": "tortoise_remove_file", "caption": "Tortoise Delete…" },
{ "command": "tortoise_remove_file", "caption": "Tortoise Remove…" },
{ "caption": "-", "id": "end" }
]
3 changes: 2 additions & 1 deletion Tortoise/Default (Windows).sublime-keymap
Expand Up @@ -8,5 +8,6 @@
{ "keys": ["ctrl+alt+v,ctrl+alt+g"], "command": "tortoise_log_file" },
{ "keys": ["ctrl+alt+v,ctrl+alt+x"], "command": "tortoise_explore_file" },
{ "keys": ["ctrl+alt+v,ctrl+alt+a"], "command": "tortoise_add_file" },
{ "keys": ["ctrl+alt+v,ctrl+alt+r"], "command": "tortoise_remove_file" }
{ "keys": ["ctrl+alt+v,ctrl+alt+r"], "command": "tortoise_remove_file" },
{ "keys": ["ctrl+alt+v,ctrl+alt+t"], "command": "tortoise_revert_file" }
]
2 changes: 1 addition & 1 deletion Tortoise/Side Bar.sublime-menu
Expand Up @@ -7,6 +7,6 @@
{ "caption": "Tortoise Diff…", "command": "tortoise_diff_path", "args": {"paths": []} },
{ "caption": "Tortoise Add…", "command": "tortoise_add_path", "args": {"paths": []} },
{ "caption": "Tortoise Revert…", "command": "tortoise_revert_path", "args": {"paths": []} },
{ "caption": "Tortoise Delete…", "command": "tortoise_remove_path", "args": {"paths": []} },
{ "caption": "Tortoise Remove…", "command": "tortoise_remove_path", "args": {"paths": []} },
{ "caption": "-", "id": "end" }
]
7 changes: 5 additions & 2 deletions readme.creole
@@ -1,14 +1,16 @@
= Sublime Tortoise

This Sublime Text 2 (http://www.sublimetext.com/2) plugin provides keyboard shortcuts to TortoiseSVN, TortoiseGit and TortoiseHg.
This Sublime Text 2 (http://www.sublimetext.com/2) plugin provides keyboard shortcuts and menu entries for TortoiseSVN, TortoiseGit and TortoiseHg.

== Installation

Simply copy the "Tortoise" folder to the folder that is opened when clicking the "Preferences > Browse Packages..." menu entry.

== Usage

Simply edit a file inside of an SVN, Git or Mercurial working copy, and the following key commands will be available:
Simply edit a file inside of an SVN, Git or Mercurial working copy, and the editor right-click menu will contain commands that can be performed on the current file. In addition, the sidebar right-click menu will contain commands that can be performed on the selected file or folder.

In addition to the menu item, the following key commands will be available when editing a file:

* The following commands are run on the root of the working copy:
** ctrl+alt+v, ctrl+alt+e - launch explorer to working copy
Expand All @@ -21,6 +23,7 @@ Simply edit a file inside of an SVN, Git or Mercurial working copy, and the foll
** ctrl+alt+v, ctrl+alt+f - diff file
** ctrl+alt+v, ctrl+alt+a - add file
** ctrl+alt+v, ctrl+alt+r - remove file
** ctrl+alt+v, ctrl+alt+t - revert file
** ctrl+alt+v, ctrl+alt+g - log of file
== Configuration
Expand Down

0 comments on commit 5107ad9

Please sign in to comment.