1 # /etc/etc-update.conf: config file for `etc-update` utility
2 # edit the lines below to your liking
4 # mode - 0 for text, 1 for menu (support incomplete)
5 # note that you need dev-util/dialog installed
8 # Whether to clear the term prior to each display
12 # Whether trivial/comment changes should be automerged
15 # arguments used whenever rm is called
18 # arguments used whenever mv is called
21 # arguments used whenever cp is called
24 # set the pager for use with diff commands (this will
25 # cause the PAGER environment variable to be ignored)
28 # For emacs-users (see NOTE_2)
29 # diff_command="eval emacs -nw --eval=\'\(ediff\ \"%file1\"\ \"%file2\"\)\'"
32 # vim-users: you CAN use vimdiff for diff_command. (see NOTE_1 and NOTE_2)
33 #diff_command="vim -d %file1 %file2"
36 # If using colordiff instead of diff, the less -R option may be required
37 # for correct display (see 'pager' setting above).
38 #diff_command="diff -uN %file1 %file2"
39 diff_command="colordiff -uN %file1 %file2"
44 # vim-users: don't use vimdiff for merging (see NOTE_1)
45 merge_command="sdiff -s -o %merged %orig %new"
51 # Examples of pager usage:
52 # pager="cat" # don't use a pager
53 # pager="less -E" # less
63 # Examples of diff_command:
64 # diff_command="diff -uN %file1 %file2" # diff
65 # diff_command="vim -d %file1 %file2" # vimdiff
75 # Examples of merge_command:
76 # merge_command="sdiff -s -o %merged %old %new" # sdiff
79 # NOTE_1: Editors such as vim/vimdiff are not usable for the merge_command
80 # because it is not known what filenames the produced files have (the user can
81 # choose while using those programs)
83 # NOTE_2: Make sure using_editor is set to "1" when using an editor as