root/releases/pkgcore/0.1.2/cnf/etc-update.conf @ ferringb-20050825015442-c13b699c86ac02c9

Revision ferringb-20050825015442-c13b699c86ac02c9, 1.5 KB (checked in by ferringb, 3 years ago)

[savior @ 1912]
header change over to Id

Line 
1# edit the lines below to your liking
2# $Id: etc-update.conf 1912 2005-08-25 03:54:42Z ferringb $
3
4# mode - 0 for text, 1 for menu (support incomplete)
5# note that you need dev-util/dialog installed
6mode="0"
7
8# Whether trivial/comment changes should be automerged
9eu_automerge="yes"
10
11# arguments used whenever rm is called
12rm_opts="-i"
13
14# arguments used whenever mv is called
15mv_opts="-i"
16
17# arguments used whenever cp is called
18cp_opts="-i"
19
20# pager for use with diff commands (see NOTE_2)
21pager="less"
22#pager=""
23
24# vim-users: you CAN use vimdiff for diff_command. (see NOTE_1)
25diff_command="diff -uN %file1 %file2"
26using_editor=0
27#diff_command="vim -d %file1 %file2"
28#using_editor=1
29
30
31# vim-users: don't use vimdiff for merging (see NOTE_1)
32merge_command="sdiff -s -o %merged %orig %new"
33
34# EXPLANATION
35#
36# pager:
37#
38# Examples of pager usage:
39#       pager=""                # don't use a pager
40#       pager="less -E" # less
41#       pager="more"    # more
42#
43#
44# diff_command:
45#
46# Arguments:
47#       %file1  [REQUIRED]
48#       %file2  [REQUIRED]
49#
50# Examples of diff_command:
51#       diff_command="diff -uN %file1 %file2"   # diff
52#       diff_command="vim -d %file1 %file2"             # vimdiff
53#
54#
55# merge_command:
56#
57# Arguments:
58#       %orig   [REQUIRED]
59#   %new    [REQUIRED]
60#       %merged [REQUIRED]
61#
62# Examples of merge_command:
63#       merge_command="sdiff -s -o %merged %old %new"   # sdiff
64#
65
66# NOTE_1: Editors such as vim/vimdiff are not usable for the merge_command
67# because it is not known what filenames the produced files have (the user can
68# choose while using those programs)
69
70# NOTE_2: Make sure pager is set to "" when using an editor as diff_command!
Note: See TracBrowser for help on using the browser.