diff options
author | hut <hut@hut.pm> | 2018-01-28 17:13:15 +0100 |
---|---|---|
committer | hut <hut@hut.pm> | 2018-01-28 17:22:25 +0100 |
commit | a29aba801939a8efc397ce429b0af4dcb80849e7 (patch) | |
tree | b45207a18379f5ce539f855eede41d0d0d7eb854 | |
parent | fbb0c339eb2d0ab4d352997384e61fb3db758b11 (diff) | |
download | ranger-a29aba801939a8efc397ce429b0af4dcb80849e7.tar.gz |
manpage: document `vcs_backend_svn` setting
@nfnty: please document your settings in the man page too next time ;)
-rw-r--r-- | doc/ranger.1 | 4 | ||||
-rw-r--r-- | doc/ranger.pod | 2 | ||||
-rw-r--r-- | ranger/config/rc.conf | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/doc/ranger.1 b/doc/ranger.1 index 879768fd..70c87f9f 100644 --- a/doc/ranger.1 +++ b/doc/ranger.1 @@ -953,8 +953,8 @@ Use the preview script defined in the setting \fIpreview_script\fR? .IP "vcs_aware [bool]" 4 .IX Item "vcs_aware [bool]" Gather and display data about version control systems. Supported vcs: git, hg. -.IP "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]" 4 -.IX Item "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]" +.IP "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr, vcs_backend_svn [string]" 4 +.IX Item "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr, vcs_backend_svn [string]" Sets the state for the version control backend. The possible values are: .Sp .Vb 3 diff --git a/doc/ranger.pod b/doc/ranger.pod index bf2f6e74..7b67e102 100644 --- a/doc/ranger.pod +++ b/doc/ranger.pod @@ -979,7 +979,7 @@ Use the preview script defined in the setting I<preview_script>? Gather and display data about version control systems. Supported vcs: git, hg. -=item vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string] +=item vcs_backend_git, vcs_backend_hg, vcs_backend_bzr, vcs_backend_svn [string] Sets the state for the version control backend. The possible values are: diff --git a/ranger/config/rc.conf b/ranger/config/rc.conf index 388e56e6..38e6f11e 100644 --- a/ranger/config/rc.conf +++ b/ranger/config/rc.conf @@ -58,12 +58,13 @@ set open_all_images true # Be aware of version control systems and display information. set vcs_aware false -# State of the three backends git, hg, bzr. The possible states are +# State of the four backends git, hg, bzr, svn. The possible states are # disabled, local (only show local info), enabled (show local and remote # information). set vcs_backend_git enabled set vcs_backend_hg disabled set vcs_backend_bzr disabled +set vcs_backend_svn disabled # Use one of the supported image preview protocols set preview_images false |