aboutsummaryrefslogtreecommitdiff
path: root/README
blob: 87ab3c21806638d4e96f86043e1f499aadf90b8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
kimble - Simple Subversion wrappers for Vim

Author:  Tom Ryder <tom@sanctum.geek.nz>
License: Same terms as Vim itself

Some simple Subversion command wrappers to ease the pain of developing with
Subversion as a VCS. This is very experimental and will be developed more as I
have time and/or inclination.

:Sstatus       Runs 'svn status' and prints its output in a scratch buffer at
               the bottom of the screen.

:Scommit       Runs 'svn commit' and prints its output in a scratch buffer at
               the bottom of the screen.

:Sinfo         Runs 'svn info' and prints its output in a scratch buffer at
               the bottom of the screen.

:Supdate       Runs 'svn update' and prints its output in a scratch buffer at
               the bottom of the screen.

:Sadd          Runs 'svn add' and prints its output in a scratch buffer at the
               bottom of the screen. Accepts an optional argument, otherwise
               assumes you mean the current file.

:Sblame        Runs 'svn blame' and prints its output in a scratch buffer at
               left of the screen. Accepts an optional argument, otherwise
               assumes you mean the current file.

:Sdiff         Runs 'svn diff' and prints its output in a scratch buffer at
               bottom of the screen. Accepts an optional argument, otherwise
               assumes you mean the current file.

:Slog          Runs 'svn log' and prints its output in a scratch buffer at the
               bottom of the screen. Accepts an optional argument, otherwise
               assumes you mean the current file.