File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -98,11 +98,14 @@ function activate(context) {
98
98
const watcher = vscode . workspace . createFileSystemWatcher ( `${ rootPath } /**/*` ) ;
99
99
100
100
const sourceControl = vscode . scm . createSourceControl ( 'svn' , 'svn' ) ;
101
- sourceControl . quickDiffProvider = sourceControl ;
102
101
103
102
const modified = sourceControl . createResourceGroup ( 'modified' , 'Modified' ) ;
104
103
const removed = sourceControl . createResourceGroup ( 'removed' , 'Removed' ) ;
105
104
const notTracked = sourceControl . createResourceGroup ( 'unversioned' , 'Not Tracked' ) ;
105
+
106
+ modified . hideWhenEmpty = true ;
107
+ removed . hideWhenEmpty = true ;
108
+ notTracked . hideWhenEmpty = true ;
106
109
107
110
const main = ( ) => {
108
111
return checkAllFiles ( client , statusBar )
Original file line number Diff line number Diff line change 2
2
"name" : " svn-scm" ,
3
3
"displayName" : " svn-scm" ,
4
4
"description" : " " ,
5
- "version" : " 0.1.0 " ,
5
+ "version" : " 0.1.1 " ,
6
6
"publisher" : " johnstoncode" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.16.0"
9
9
},
10
10
"categories" : [
11
- " Other"
11
+ " Other" ,
12
+ " SCM Providers"
12
13
],
13
14
"activationEvents" : [
14
15
" *"
You can’t perform that action at this time.
0 commit comments