A very basic subversion plugin for the Sublime Text 2 text editor, based on burriko's plugin.
The aim is to provide a quick method to commit simple changes without leaving Sublime Text 2. To this end the only subversion commands that are supported are:
Committing will show you a colorized diff of your changes, and allow you to enter a single line of text for the commit message.
NOTE: The commands 'status' and 'update' run at the FOLDER level of the current file, but 'add' and 'commit' only operate upon the current file.
subversion.py
and Default.sublime-keymap
into the Sublime Text 2/Packages/User
folder that you opened in the previous step.Default.sublime-keymap
.path
(i.e., you can type svn -h
in a command window and it lists the svn commands).Very occasionally Sublime Text 2 will freeze when generating the diff. Killing the svn process (ps -A | grep svn
, note the process id of svn (not grep!), and kill -9 THE_PROCESS_ID#
) will bring Sublime Text 2 back to life.