Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add record help text on input '?'. |
---|---|
Timelines: | family | ancestors | descendants | both | record |
Files: | files | file ages | folders |
SHA1: |
279dbb630f8b077c0e27187f41b11952 |
User & Date: | fifr 2014-05-28 11:28:06 |
Context
2014-06-04
| ||
12:47 | Adding missing 'a' command in hunk selection. check-in: 1acb5aa2c2 user: fifr tags: record | |
2014-05-28
| ||
11:28 | Add record help text on input '?'. check-in: 279dbb630f user: fifr tags: record | |
2014-05-17
| ||
17:46 | Change to root directory if not file is specified. The patch returned by diff contains absolute paths. check-in: afd3dfc92b user: fifr tags: record | |
Changes
Changes to fslrc.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
n { return n }
s { return s }
f { return f }
d { return d }
q { return q }
y { return y }
a { return a }
? { puts "Help" }
default { puts "ERROR: invalid command" }
}
}
}
# colourizehunk hunk
# - hunk: a hunk of a diff to be colourized
|
| > > > > > > > > > |
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
n { return n } s { return s } f { return f } d { return d } q { return q } y { return y } a { return a } ? { puts "y - yes, record this change" puts "n - no, do not record this change" puts "s - skip remaining changes to this file" puts "f - record remaining changes to this file" puts "d - done, skip remaining changes and files" puts "a - record all remaining changes to all remaining files" puts "q - quit, record no changes" puts "? - help, show this message" } default { puts "ERROR: invalid command" } } } } # colourizehunk hunk # - hunk: a hunk of a diff to be colourized |