summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAbdo Roig-Maranges <abdo.roig@gmail.com>2013-02-17 18:31:29 +0100
committerhut <hut@lavabit.com>2013-02-17 19:00:32 +0100
commit95bca173ce92294f31c052555b78938626f3c120 (patch)
treee03ce17ab651aa60932a5ab12183b8fc1fc32b8d /doc
parent4fc4f85607b27df380184395f65161363db748f8 (diff)
downloadranger-95bca173ce92294f31c052555b78938626f3c120.tar.gz
document config options for vcs on the man page
Diffstat (limited to 'doc')
-rw-r--r--doc/ranger.115
-rw-r--r--doc/ranger.pod9
2 files changed, 16 insertions, 8 deletions
diff --git a/doc/ranger.1 b/doc/ranger.1
index 2a8caf47..acaca462 100644
--- a/doc/ranger.1
+++ b/doc/ranger.1
@@ -124,7 +124,7 @@
 .\" ========================================================================
 .\"
 .IX Title "RANGER 1"
-.TH RANGER 1 "ranger-1.5.5" "02/10/2013" "ranger manual"
+.TH RANGER 1 "ranger-1.5.5" "02/17/2013" "ranger manual"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
@@ -687,10 +687,15 @@ 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_backends [list]" 4
-.IX Item "vcs_backends [list]"
-List of vcs backends to use. By default it is ['git', 'hg'], but can be set to
-handle only 'git' repositories, for example.
+.IP "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]" 4
+.IX Item "vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]"
+Sets the state for the version control backend. The possible values are:
+.Sp
+.Vb 3
+\& disabled   don\*(Aqt display any information.
+\& local      display only local state.
+\& enabled    display both, local and remote state. May be slow for hg and bzr.
+.Ve
 .IP "xterm_alt_key [bool]" 4
 .IX Item "xterm_alt_key [bool]"
 Enable this if key combinations with the Alt Key don't work for you.
diff --git a/doc/ranger.pod b/doc/ranger.pod
index c388aaf7..246dd4ab 100644
--- a/doc/ranger.pod
+++ b/doc/ranger.pod
@@ -694,10 +694,13 @@ 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_backends [list]
+=item vcs_backend_git, vcs_backend_hg, vcs_backend_bzr [string]
 
-List of vcs backends to use. By default it is ['git', 'hg'], but can be set to
-handle only 'git' repositories, for example.
+Sets the state for the version control backend. The possible values are:
+    
+ disabled   don't display any information.
+ local      display only local state.
+ enabled    display both, local and remote state. May be slow for hg and bzr.
 
 =item xterm_alt_key [bool]
 
>232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440