OpenBSD CVS

CVS log for src/usr.bin/mg/mg.1


[BACK] Up to [local] / src / usr.bin / mg

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.136 / (download) - annotate - [select for diffs], Mon Oct 16 08:33:16 2023 UTC (7 months ago) by op
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, HEAD
Changes since 1.135: +5 -2 lines
Diff to previous 1.135 (colored)

reinstate space-to-tabstop entry in the manpage

removed in rev 1.95 since was hidden behind NOTAB, and forgot to be
re-added when no-tab-mode was resurrected.

Revision 1.135 / (download) - annotate - [select for diffs], Wed Jun 28 08:37:52 2023 UTC (10 months, 3 weeks ago) by op
Branch: MAIN
CVS Tags: OPENBSD_7_4_BASE, OPENBSD_7_4
Changes since 1.134: +4 -2 lines
Diff to previous 1.134 (colored)

add `notab' to the list of modes that can be set with set-default-mode

specify also that it can be set globally with set-default-mode, as done
in the description of the other built-in modes.

Diff from Simon Branch (that I got via jmc@), thanks!

Revision 1.134 / (download) - annotate - [select for diffs], Fri Apr 28 10:02:03 2023 UTC (12 months, 3 weeks ago) by op
Branch: MAIN
Changes since 1.133: +5 -4 lines
Diff to previous 1.133 (colored)

fix lfindent (newline-and-indent) comment and description in the man page

for a while it has used only spaces when no-tab-mode is enabled and respected
the current buffer tab width.

Revision 1.133 / (download) - annotate - [select for diffs], Fri Apr 28 09:50:50 2023 UTC (12 months, 3 weeks ago) by op
Branch: MAIN
Changes since 1.132: +257 -221 lines
Diff to previous 1.132 (colored)

mark up all commands in the man page

Revision 1.132 / (download) - annotate - [select for diffs], Tue Apr 25 13:32:20 2023 UTC (12 months, 3 weeks ago) by op
Branch: MAIN
Changes since 1.131: +5 -3 lines
Diff to previous 1.131 (colored)

mark up `mode' in -f description

Revision 1.131 / (download) - annotate - [select for diffs], Tue Apr 25 08:37:24 2023 UTC (12 months, 3 weeks ago) by op
Branch: MAIN
Changes since 1.130: +4 -3 lines
Diff to previous 1.130 (colored)

document that prefix-region with a prefix argument prompts for the string

Revision 1.130 / (download) - annotate - [select for diffs], Fri Apr 21 13:39:37 2023 UTC (12 months, 4 weeks ago) by op
Branch: MAIN
Changes since 1.129: +5 -2 lines
Diff to previous 1.129 (colored)

mg: allow to change the tab width

This makes the tab width customizable per-buffer.  The new function
`set-tab-width' changes it for the current buffer or the default value
for new buffers if called with a prefix argument (or from the startup
file.)

The default tab width is still 8 column.

Together with the newly resurrected no-tab-mode, allows to use mg for a
variety of programming languages and coding styles.

Note that it's not possible to call set-tab-width with auto-execute in
the startup file due to limitations in how auto-execute and the parser
work.

ok tb@

Revision 1.129 / (download) - annotate - [select for diffs], Mon Apr 17 09:49:04 2023 UTC (13 months ago) by op
Branch: MAIN
Changes since 1.128: +5 -5 lines
Diff to previous 1.128 (colored)

resurrect mg' no-tab-mode

It's a mode that makes mg insert spaces up to the next tab stop upon
pressing TAB, along with the various tweaks needed in other places so
for e.g. auto-indent-mode also uses spaces.

This is not just an unifdef NOTAB: even under no-tab-mode mg should
consider literal TAB characters wide up to the next tab stop, while the
hidden code considered hard tabs to be just control character (i.e. ^I)
with width of two columns.  I'm also introducing the helper function
doindent() in utils.c to de-obfuscate the insertion of tabs/spaces until
the given column.

ok tb@

Revision 1.128 / (download) - annotate - [select for diffs], Wed Mar 29 07:29:17 2023 UTC (13 months, 3 weeks ago) by op
Branch: MAIN
Changes since 1.127: +3 -3 lines
Diff to previous 1.127 (colored)

change tagvisit (aka visit-tag-table) to immediately load the tag file

before it used to only record the path to the tag file which was loaded
on demand upon find-tag (M-.).  tagvisit did to do a stat + access dance
to know if the path was pointing to a regular, readable file and
loadtags (called lazily by find-tag) trusted those checks...

Instead, just load the tags in tagvisit and drop the lazy mechanics.

ok tb@

Revision 1.127 / (download) - annotate - [select for diffs], Thu Oct 20 18:59:24 2022 UTC (18 months, 4 weeks ago) by op
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3
Changes since 1.126: +9 -2 lines
Diff to previous 1.126 (colored)

add zap-to-char and zap-up-to-char; bind zap-to-char to M-z.

ok florian@

Revision 1.126 / (download) - annotate - [select for diffs], Thu Mar 31 17:27:25 2022 UTC (2 years, 1 month ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.125: +3 -3 lines
Diff to previous 1.125 (colored)

man pages: add missing commas between subordinate and main clauses

jmc@ dislikes a comma before "then" in a conditional, so leave those
untouched.

ok jmc@

Revision 1.125 / (download) - annotate - [select for diffs], Sun May 2 14:13:17 2021 UTC (3 years ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0
Changes since 1.124: +4 -2 lines
Diff to previous 1.124 (colored)

dired-shell-command is listed in the man page under 'DIRED KEY
BINDINGS' but not under 'DIRED COMMANDS'. Add it in.

Revision 1.124 / (download) - annotate - [select for diffs], Thu Apr 22 19:50:55 2021 UTC (3 years ago) by lum
Branch: MAIN
Changes since 1.123: +4 -2 lines
Diff to previous 1.123 (colored)

Add a non-interactive version of query-replace-regexp function called
replace-regexp. Unfortunately query-replace-regexp can't be used in a
startup file.

Revision 1.123 / (download) - annotate - [select for diffs], Tue Apr 20 10:02:50 2021 UTC (3 years ago) by lum
Branch: MAIN
Changes since 1.122: +6 -2 lines
Diff to previous 1.122 (colored)

Add 'dired-jump' from Philip K. <philip@warpmail.net> sent to tech@
over a year ago. Comments and testing from gkoehler@. Thanks to both.
Also, some modifications from me.

Revision 1.122 / (download) - annotate - [select for diffs], Fri Mar 26 15:02:10 2021 UTC (3 years, 1 month ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.121: +7 -2 lines
Diff to previous 1.121 (colored)

Invert the 'R' indicator which seems rather unintuitive at the moment,
currently a '*' next to a file's name indicates it is writable. With
this diff it now means it is read-only. Also make the active buffer
indicator more visible:'.'->'>'.

Revision 1.121 / (download) - annotate - [select for diffs], Sat Mar 20 09:00:49 2021 UTC (3 years, 2 months ago) by lum
Branch: MAIN
Changes since 1.120: +8 -1 lines
Diff to previous 1.120 (colored)

Add a 'batch' mode to mg via the '-b' command line option which will
initialise a pty, run the specified file of mg commands and then exit.

This is to facilitate mg fitting into the OpenBSD regress test
framework and be able to run via a cron job.

Revision 1.120 / (download) - annotate - [select for diffs], Tue Feb 23 18:45:33 2021 UTC (3 years, 2 months ago) by lum
Branch: MAIN
Changes since 1.119: +6 -6 lines
Diff to previous 1.119 (colored)

Move -u to alphabetically correct place in options. As spotted by jmc@

Revision 1.119 / (download) - annotate - [select for diffs], Tue Feb 23 08:10:51 2021 UTC (3 years, 2 months ago) by lum
Branch: MAIN
Changes since 1.118: +8 -2 lines
Diff to previous 1.118 (colored)

Allow the user to specify a path to the mg startup file on the command line.

Revision 1.118 / (download) - annotate - [select for diffs], Fri Nov 8 19:54:40 2019 UTC (4 years, 6 months ago) by solene
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.117: +3 -2 lines
Diff to previous 1.117 (colored)

Add that make-backup-files variable is enabled by default

make-backup-files toggles backup, so when you add it in your ~/.mg this
disables backup.

ok benno@

Revision 1.117 / (download) - annotate - [select for diffs], Tue Jul 2 16:25:39 2019 UTC (4 years, 10 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.116: +3 -2 lines
Diff to previous 1.116 (colored)

I totally forgot about the instance where blink-and-insert can be
called from the mg startup file. My previous diff broke that instance.
So this diff reverts my change but adds a man page line to
blink-and-insert in case someone should try to use it interactively,
again.  Also, should anyone ever want to add an interactive version of
blink-and-insert in the future, the code is there. And the code could
be useful in another, related instance.

Revision 1.116 / (download) - annotate - [select for diffs], Mon Jul 1 08:56:36 2019 UTC (4 years, 10 months ago) by lum
Branch: MAIN
Changes since 1.115: +6 -2 lines
Diff to previous 1.115 (colored)

add dired-goto-file

Revision 1.115 / (download) - annotate - [select for diffs], Mon Jun 17 11:39:26 2019 UTC (4 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.114: +4 -2 lines
Diff to previous 1.114 (colored)

From Leonid Bobrov: add a condition to {beginning,end}-of-buffer to
push mark only if it's not pushed already.

Revision 1.114 / (download) - annotate - [select for diffs], Thu Jun 6 18:17:34 2019 UTC (4 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.113: +5 -5 lines
Diff to previous 1.113 (colored)

tweak previous;

Revision 1.113 / (download) - annotate - [select for diffs], Mon Jun 3 16:26:30 2019 UTC (4 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.112: +8 -2 lines
Diff to previous 1.112 (colored)

This diff gives the commands beginning-of-buffer and end-of-buffer the
ability to take a numeric argument and move n/10th of the way from the
top or bottom of the current buffer respectively. A universal argument
of higher than 9 puts the cursor back to the end/start of buffer.

Revision 1.112 / (download) - annotate - [select for diffs], Wed Dec 26 07:01:22 2018 UTC (5 years, 4 months ago) by phessler
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.111: +2 -6 lines
Diff to previous 1.111 (colored)

revert "kill a region if 'delete' or 'backspace' is pressed"
This caused a change of behaviour in the search case, and isn't yet ready.

Committing on the behalf of lum@

OK lum@

Revision 1.111 / (download) - annotate - [select for diffs], Tue Dec 18 23:05:03 2018 UTC (5 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.110: +4 -4 lines
Diff to previous 1.110 (colored)

use Sq for single chars, and escape ";" properly;

Revision 1.110 / (download) - annotate - [select for diffs], Tue Dec 18 20:35:34 2018 UTC (5 years, 5 months ago) by lum
Branch: MAIN
Changes since 1.109: +6 -2 lines
Diff to previous 1.109 (colored)

Make mg kill a region if the 'delete' or 'backspace' keys are pressed
and a region is selected.  The contents of the region are then placed
into the kill buffer. Like emacs.

Revision 1.109 / (download) - annotate - [select for diffs], Thu Dec 13 14:59:16 2018 UTC (5 years, 5 months ago) by lum
Branch: MAIN
Changes since 1.108: +6 -2 lines
Diff to previous 1.108 (colored)

Allow all non-ephemeral buffers to be toggled writable or read-only
while mg is running: toggle-read-only-all

Revision 1.108 / (download) - annotate - [select for diffs], Sun Nov 18 07:57:28 2018 UTC (5 years, 6 months ago) by lum
Branch: MAIN
Changes since 1.107: +4 -6 lines
Diff to previous 1.107 (colored)

small clean up of dired section
ok jmc@

Revision 1.107 / (download) - annotate - [select for diffs], Wed Aug 29 07:50:16 2018 UTC (5 years, 8 months ago) by reyk
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.106: +5 -2 lines
Diff to previous 1.106 (colored)

Add set-case-replaced to toggle case-preserving replace on or off.

By default, replacing "foo" with "bar" turns "FOO" into "BAR".
With case-replace turned off, "FOO" will turn into "bar".

OK florian@ tb@

Revision 1.106 / (download) - annotate - [select for diffs], Mon Dec 11 07:27:07 2017 UTC (6 years, 5 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.105: +3 -3 lines
Diff to previous 1.105 (colored)

fix the description of delete-non-matching-lines;
from mazocomp

Revision 1.105 / (download) - annotate - [select for diffs], Thu Jul 28 21:37:45 2016 UTC (7 years, 9 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.104: +6 -6 lines
Diff to previous 1.104 (colored)

these programs probably do not need to use TMPDIR. ok florian

Revision 1.104 / (download) - annotate - [select for diffs], Thu Apr 14 17:05:32 2016 UTC (8 years, 1 month ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.103: +6 -2 lines
Diff to previous 1.103 (colored)

Add 'sentence-end-double-space'.

If you prefer "lighter" punctuation and one space between sentences,
for example:

Mr and Mrs Jones are from the UK. They arrived today.

over more liberal use of full stops and double spaces between
sentences:

Mr. and Mrs. Jones are from the U.K.  They arrived today.

then toggling 'sentence-end-double-space' will make mg's
fill-paragraph function format text using one space instead of two
(the default) between sentences. However, be careful, should you have
a double spaced document and accidentally "format" it to have single
spaces, then you may have a problem. mg won't be able to revert the
formatting for you (unless you have a previous version of the text in
the "undo" history, or are using mg's backup facility and haven't
opened and saved multiple times!).

Comments from schwarze@

Revision 1.103 / (download) - annotate - [select for diffs], Thu Mar 17 21:56:12 2016 UTC (8 years, 2 months ago) by lum
Branch: MAIN
Changes since 1.102: +10 -6 lines
Diff to previous 1.102 (colored)

Show modes for buffers more clearly. ok jasper@

Revision 1.102 / (download) - annotate - [select for diffs], Wed Mar 16 18:27:00 2016 UTC (8 years, 2 months ago) by lum
Branch: MAIN
Changes since 1.101: +3 -3 lines
Diff to previous 1.101 (colored)

notab mode is not enabled at the moment.

Revision 1.101 / (download) - annotate - [select for diffs], Sat Jan 2 10:39:19 2016 UTC (8 years, 4 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.100: +7 -2 lines
Diff to previous 1.100 (colored)

Add dired-find-alternate-file.

Revision 1.100 / (download) - annotate - [select for diffs], Wed Dec 30 16:53:17 2015 UTC (8 years, 4 months ago) by lum
Branch: MAIN
Changes since 1.99: +3 -3 lines
Diff to previous 1.99 (colored)

Widen the dired command list. ok jmc@

Revision 1.99 / (download) - annotate - [select for diffs], Tue Dec 29 19:44:32 2015 UTC (8 years, 4 months ago) by lum
Branch: MAIN
Changes since 1.98: +6 -2 lines
Diff to previous 1.98 (colored)

Add transpose-words, ok jasper@.
Limited to one iteration until 'undo' is looked into.

Revision 1.98 / (download) - annotate - [select for diffs], Thu Dec 24 09:07:47 2015 UTC (8 years, 4 months ago) by lum
Branch: MAIN
Changes since 1.97: +5 -3 lines
Diff to previous 1.97 (colored)

Add -R option to allow files specified on the command line to be
opened read-only. ok jasper@ phessler@ and man page advice from jmc@

Revision 1.97 / (download) - annotate - [select for diffs], Tue Dec 22 15:33:16 2015 UTC (8 years, 4 months ago) by lum
Branch: MAIN
Changes since 1.96: +2 -10 lines
Diff to previous 1.96 (colored)

Remove commands that are not implemented, at the moment. Added by
accident in previous diff.

Revision 1.96 / (download) - annotate - [select for diffs], Mon Dec 21 09:04:52 2015 UTC (8 years, 5 months ago) by lum
Branch: MAIN
Changes since 1.95: +12 -4 lines
Diff to previous 1.95 (colored)

Add RET to dired-find-file. ok jasper@
(and jasper@ ok'd recent tutorial diff, forgot to mention)

Revision 1.95 / (download) - annotate - [select for diffs], Wed Nov 18 17:41:09 2015 UTC (8 years, 6 months ago) by reyk
Branch: MAIN
Changes since 1.94: +2 -5 lines
Diff to previous 1.94 (colored)

Remove "space-to-tabstop" from the manpage - it is not enabled,
ifdef'ed with NOTAB, and doesn't seem to work.

OK lum@

Revision 1.94 / (download) - annotate - [select for diffs], Mon Oct 12 07:55:52 2015 UTC (8 years, 7 months ago) by lum
Branch: MAIN
Changes since 1.93: +8 -4 lines
Diff to previous 1.93 (colored)

Correctly mark-up some recent additions. ok jmc@

Revision 1.93 / (download) - annotate - [select for diffs], Sat Sep 26 15:03:15 2015 UTC (8 years, 7 months ago) by lum
Branch: MAIN
Changes since 1.92: +6 -2 lines
Diff to previous 1.92 (colored)

Add transpose-paragraphs. ok jasper@

Revision 1.92 / (download) - annotate - [select for diffs], Thu Sep 24 07:07:59 2015 UTC (8 years, 7 months ago) by lum
Branch: MAIN
Changes since 1.91: +6 -2 lines
Diff to previous 1.91 (colored)

Add mark-paragraph. ok jasper@

Revision 1.91 / (download) - annotate - [select for diffs], Wed Sep 9 19:03:13 2015 UTC (8 years, 8 months ago) by lum
Branch: MAIN
Changes since 1.90: +3 -3 lines
Diff to previous 1.90 (colored)

mg doesn't support 'dired-do-delete'. Change description to the
supported function.

Revision 1.90 / (download) - annotate - [select for diffs], Tue Mar 17 15:20:38 2015 UTC (9 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.89: +3 -3 lines
Diff to previous 1.89 (colored)

correct command name; from kaspars bankovskis

Revision 1.89 / (download) - annotate - [select for diffs], Mon Nov 3 14:53:22 2014 UTC (9 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.88: +5 -5 lines
Diff to previous 1.88 (colored)

comment out no-tab-mode, since mg is currently compiled without it;

From: Kaspars Bankovskis
ok lum

Revision 1.88 / (download) - annotate - [select for diffs], Wed Apr 2 20:32:00 2014 UTC (10 years, 1 month ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.87: +8 -2 lines
Diff to previous 1.87 (colored)

Add the '#' character as a comment character in the startup file.
Include ';' and '#' into man page.  ok deraadt@ phessler@

Revision 1.87 / (download) - annotate - [select for diffs], Thu Mar 27 07:30:25 2014 UTC (10 years, 1 month ago) by jmc
Branch: MAIN
Changes since 1.86: +3 -3 lines
Diff to previous 1.86 (colored)

new-line -> newline;
not sure whether it's worth flattening the other few examples of
this in our pages, but since it's used multiple times here without
hyphen, at least keeps this page consistent;

Revision 1.86 / (download) - annotate - [select for diffs], Wed Mar 26 22:02:06 2014 UTC (10 years, 1 month ago) by lum
Branch: MAIN
Changes since 1.85: +5 -7 lines
Diff to previous 1.85 (colored)

Previously, C-t (transpose two chars) did not behave the same as
Emacs.  This diff makes mg behave more so. Though new-line characters
are treated as any other.

Difference from emacs observed and reported by deraadt@. First diff
tested and ridiculed by deraadt@. Second diff not tested and not
ridiculed by deraadt@ but at least email responded to.

Revision 1.85 / (download) - annotate - [select for diffs], Thu Dec 19 19:09:27 2013 UTC (10 years, 5 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.84: +6 -4 lines
Diff to previous 1.84 (colored)

Amend dired-unmark-backward to fit with recent change and
include DEL in DIRED KEY BINDINGS.

Revision 1.84 / (download) - annotate - [select for diffs], Mon Jun 3 05:10:59 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.83: +5 -1 lines
Diff to previous 1.83 (colored)

Add the 'g' character and dired-revert to refresh the dired buffer.
ok jmc@ for man page.

Revision 1.83 / (download) - annotate - [select for diffs], Sun Jun 2 10:09:21 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.82: +6 -2 lines
Diff to previous 1.82 (colored)

Add the 'quit-window' dired command and receive a basic English lesson
from jmc@ again.

Revision 1.82 / (download) - annotate - [select for diffs], Sun Jun 2 09:53:42 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.81: +19 -19 lines
Diff to previous 1.81 (colored)

Rename the dired-* commands to be like the emacs equivalents.

Revision 1.81 / (download) - annotate - [select for diffs], Sat Jun 1 17:33:49 2013 UTC (10 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.80: +4 -3 lines
Diff to previous 1.80 (colored)

new sentence, new line;

Revision 1.80 / (download) - annotate - [select for diffs], Sat Jun 1 14:47:07 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.79: +35 -2 lines
Diff to previous 1.79 (colored)

Add dired key bindings. ok and advice jmc@

Revision 1.79 / (download) - annotate - [select for diffs], Fri May 31 18:03:44 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.78: +5 -1 lines
Diff to previous 1.78 (colored)

Make the system bell toggleable via 'audible-bell', and if switched
off, make available an alternative 'visible-bell'.

ok florian@ jasper@ Feedback Sunil Nimmagadda.

Revision 1.78 / (download) - annotate - [select for diffs], Mon May 27 19:28:51 2013 UTC (10 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.77: +6 -5 lines
Diff to previous 1.77 (colored)

tweak previous;

Revision 1.77 / (download) - annotate - [select for diffs], Mon May 27 18:16:32 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.76: +40 -2 lines
Diff to previous 1.76 (colored)

Add dired commands. ok and suggestions jmc@

Revision 1.76 / (download) - annotate - [select for diffs], Wed May 22 19:23:45 2013 UTC (10 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.75: +6 -2 lines
Diff to previous 1.75 (colored)

Shuffle shell-command-on-region around to give shell-command.
ok florian@ jasper@
Testing Sunil Nimmagadda

Revision 1.75 / (download) - annotate - [select for diffs], Fri Dec 28 16:12:50 2012 UTC (11 years, 4 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.74: +4 -2 lines
Diff to previous 1.74 (colored)

Respect locale for ctype purposes, e.g. display ISO Latin 1 characters;
ok stsp@ reyk@

Document that multi-byte character sets are not supported; from stsp@

Revision 1.74 / (download) - annotate - [select for diffs], Thu Dec 27 18:51:52 2012 UTC (11 years, 4 months ago) by florian
Branch: MAIN
Changes since 1.73: +4 -2 lines
Diff to previous 1.73 (colored)

diff-buffer-with-file
input gsoares@, Sunil Nimmagadda, jasper@
ok jasper@, benno@

Revision 1.73 / (download) - annotate - [select for diffs], Tue Dec 4 10:54:20 2012 UTC (11 years, 5 months ago) by florian
Branch: MAIN
Changes since 1.72: +4 -2 lines
Diff to previous 1.72 (colored)

Bring back column numbers and make them configurable, off by default
to not kill slow serial lines.
Committing my independently written, slightly different version, as
requested by jasper@.

OK jasper@, OK reyk@ for jasper@'s version of the diff
"Sure, if you think so then." deraadt@

Revision 1.72 / (download) - annotate - [select for diffs], Tue Nov 27 19:46:46 2012 UTC (11 years, 5 months ago) by jasper
Branch: MAIN
Changes since 1.71: +4 -2 lines
Diff to previous 1.71 (colored)

- add 'make-directory' (not bound to any shortcut).

feedback from florian@ lum@
ok florian@

Revision 1.71 / (download) - annotate - [select for diffs], Tue Nov 13 22:03:44 2012 UTC (11 years, 6 months ago) by florian
Branch: MAIN
Changes since 1.70: +3 -3 lines
Diff to previous 1.70 (colored)

Column numbers are gone for good.
"yes" deraadt, input jmc

Revision 1.70 / (download) - annotate - [select for diffs], Mon Oct 22 08:31:42 2012 UTC (11 years, 6 months ago) by florian
Branch: MAIN
Changes since 1.69: +9 -2 lines
Diff to previous 1.69 (colored)

Add (r)evert prompt to "File changed on disk; really edit the buffer"
prompt.

input, ok lum@, man bit ok jmc@, ok benno@

Revision 1.69 / (download) - annotate - [select for diffs], Fri Oct 12 21:13:47 2012 UTC (11 years, 7 months ago) by jasper
Branch: MAIN
Changes since 1.68: +4 -2 lines
Diff to previous 1.68 (colored)

- implement "revert-buffer", which reverts the current buffer to what's on disk
- split gotoline() into the argument handling part and the part that actually
  goes to the specified line number so it can be re-used by revertbuffer()

input/ok florian@ haesbaert@

Revision 1.68 / (download) - annotate - [select for diffs], Wed Jul 11 19:56:13 2012 UTC (11 years, 10 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2
Changes since 1.67: +5 -5 lines
Diff to previous 1.67 (colored)

fix three typos.

ok jmc@

Revision 1.67 / (download) - annotate - [select for diffs], Thu Jun 21 17:55:10 2012 UTC (11 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.66: +9 -9 lines
Diff to previous 1.66 (colored)

Shuffle leave-tmpdir-backups up to correct place in alphabetic order.
(the command name changed at one point from move-... -> leave-...)

Revision 1.66 / (download) - annotate - [select for diffs], Wed Jun 20 07:25:50 2012 UTC (11 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.65: +3 -3 lines
Diff to previous 1.65 (colored)

make a list format more nicely; ok lum

Revision 1.65 / (download) - annotate - [select for diffs], Tue Jun 19 21:29:39 2012 UTC (11 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.64: +19 -10 lines
Diff to previous 1.64 (colored)

various small markup fixes; ok lum

Revision 1.64 / (download) - annotate - [select for diffs], Mon Jun 18 13:55:24 2012 UTC (11 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.63: +13 -2 lines
Diff to previous 1.63 (colored)

Add a BACKUP FILES section.
Suggested by jmc@
He will review further.

Revision 1.63 / (download) - annotate - [select for diffs], Mon Jun 18 11:35:31 2012 UTC (11 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.62: +4 -2 lines
Diff to previous 1.62 (colored)

Add ~/.mg.d to FILES. Reviewed by jmc@

Revision 1.62 / (download) - annotate - [select for diffs], Thu Jun 14 17:21:22 2012 UTC (11 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.61: +9 -2 lines
Diff to previous 1.61 (colored)

Allow mg to save backup files to a users home directory.
Suggestions from eric@ and Sunil Nimmagadda.
Remarks deraadt@.

Revision 1.61 / (download) - annotate - [select for diffs], Thu Jun 7 15:15:04 2012 UTC (11 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.60: +54 -2 lines
Diff to previous 1.60 (colored)

Add some cscope support to mg. From Sunil Nimmagadda.  Due to some
structural limitations in mg, mg doesn't behave exactly the same as
emacs cscope (see the README) but is still very usable.

man page bits reviewed by jmc@, otherwise tested and reviewed by
myself.

Revision 1.60 / (download) - annotate - [select for diffs], Fri May 25 15:41:09 2012 UTC (11 years, 11 months ago) by lum
Branch: MAIN
Changes since 1.59: +4 -4 lines
Diff to previous 1.59 (colored)

Be consistent on how we describe key-strokes: UP-low (c-H -> C-h)

Revision 1.59 / (download) - annotate - [select for diffs], Wed Apr 11 17:51:10 2012 UTC (12 years, 1 month ago) by lum
Branch: MAIN
Changes since 1.58: +11 -2 lines
Diff to previous 1.58 (colored)

Add:
 1. C-x h to mark whole buffer.
 2. M-| to pipe current region to external command.
From Sunil Nimmagadda.

Feedback from deraadt@ and myself. ok for man page amendments from jmc@

Revision 1.58 / (download) - annotate - [select for diffs], Thu Feb 9 09:00:14 2012 UTC (12 years, 3 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_5_1_BASE, OPENBSD_5_1
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored)

typo. ok jmc@

Revision 1.57 / (download) - annotate - [select for diffs], Mon Nov 28 07:58:23 2011 UTC (12 years, 5 months ago) by lum
Branch: MAIN
Changes since 1.56: +5 -5 lines
Diff to previous 1.56 (colored)

jmc's suggested text for the ctags man page update was slighty
different in the committed version. Change to his original text,
requested by him.

Revision 1.56 / (download) - annotate - [select for diffs], Mon Nov 28 04:41:39 2011 UTC (12 years, 5 months ago) by lum
Branch: MAIN
Changes since 1.55: +19 -2 lines
Diff to previous 1.55 (colored)

Add some ctags support to mg. From Sunil Nimmagadda.

Man page review and suggestions from jmc@

Revewied and tested by myself, and ok deraadt@

Revision 1.55 / (download) - annotate - [select for diffs], Fri Sep 2 02:37:52 2011 UTC (12 years, 8 months ago) by lum
Branch: MAIN
Changes since 1.54: +3 -3 lines
Diff to previous 1.54 (colored)

Add email address for diffs and remove plural man pages. ok jmc@

Also tweak man page from jmc@

Revision 1.54 / (download) - annotate - [select for diffs], Wed Aug 31 14:34:28 2011 UTC (12 years, 8 months ago) by lum
Branch: MAIN
Changes since 1.53: +10 -10 lines
Diff to previous 1.53 (colored)

Remove 2nd person. ok jmc@

Revision 1.53 / (download) - annotate - [select for diffs], Mon Aug 1 12:15:23 2011 UTC (12 years, 9 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

Change Gnu to GNU in man page (also, while here, in README and in a comment)
ok jmc@

Revision 1.52 / (download) - annotate - [select for diffs], Wed Feb 2 05:27:55 2011 UTC (13 years, 3 months ago) by lum
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.51: +3 -3 lines
Diff to previous 1.51 (colored)

Put correct path for tutorial into man page. oops.

Revision 1.51 / (download) - annotate - [select for diffs], Wed Feb 2 05:21:36 2011 UTC (13 years, 3 months ago) by lum
Branch: MAIN
Changes since 1.50: +3 -1 lines
Diff to previous 1.50 (colored)

Move mg(1) tutorial file into a release, instead of languishing in src.
ok nick@ schwarze@ miod@ kjell@

Revision 1.50 / (download) - annotate - [select for diffs], Tue Jan 18 17:37:32 2011 UTC (13 years, 4 months ago) by jmc
Branch: MAIN
Changes since 1.49: +4 -3 lines
Diff to previous 1.49 (colored)

new sentence, new line;

Revision 1.49 / (download) - annotate - [select for diffs], Tue Jan 18 16:25:40 2011 UTC (13 years, 4 months ago) by kjell
Branch: MAIN
Changes since 1.48: +7 -2 lines
Diff to previous 1.48 (colored)

Add join-line, bound to M-^
Join the current line to the previous.

original diff by Henri Kemppainen. minor mod to add undo boundaries.
Thanks!

Revision 1.48 / (download) - annotate - [select for diffs], Mon Jan 17 03:12:06 2011 UTC (13 years, 4 months ago) by kjell
Branch: MAIN
Changes since 1.47: +6 -2 lines
Diff to previous 1.47 (colored)

Add back-to-indentation. (M-m)
Move the dot to the first non-whitespace character on the current line.
from Henri Kemppainen . ok theo

Revision 1.47 / (download) - annotate - [select for diffs], Thu Oct 7 17:08:58 2010 UTC (13 years, 7 months ago) by sobrado
Branch: MAIN
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored)

use an upper case "C" in "Control" for consistency; use the same
capitalization for keys in Control and Meta for both key bindings
and descriptions.

ok kjell@

Revision 1.46 / (download) - annotate - [select for diffs], Fri Mar 26 19:30:40 2010 UTC (14 years, 1 month ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Changes since 1.45: +4 -4 lines
Diff to previous 1.45 (colored)

dispense with some wacky escape sequences;

Revision 1.45 / (download) - annotate - [select for diffs], Tue Jun 23 19:45:10 2009 UTC (14 years, 10 months ago) by nicm
Branch: MAIN
CVS Tags: OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.44: +3 -3 lines
Diff to previous 1.44 (colored)

Escape ) to make "C-x )" spaced correctly in key list.

"if it formats correctly, go for it" jmc@

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jun 5 06:29:44 2009 UTC (14 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored)

the the

Revision 1.43 / (download) - annotate - [select for diffs], Thu Jun 4 23:56:50 2009 UTC (14 years, 11 months ago) by kjell
Branch: MAIN
Changes since 1.42: +8 -3 lines
Diff to previous 1.42 (colored)

If a buffer is created with a name that starts and ends with an askerisk
(e.g. *scratch*, *Completions*, *grep*) it is considered throwaway; i.e.
the user will NOT be prompted to save changes when the buffer is killed.

Revision 1.42 / (download) - annotate - [select for diffs], Thu Nov 6 14:04:48 2008 UTC (15 years, 6 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.41: +4 -2 lines
Diff to previous 1.41 (colored)

add a description for the recently added c-mode.

ok jmc@

Revision 1.41 / (download) - annotate - [select for diffs], Mon Sep 15 16:13:35 2008 UTC (15 years, 8 months ago) by kjell
Branch: MAIN
Changes since 1.40: +11 -2 lines
Diff to previous 1.40 (colored)

Expose the undo commands as proper mg functions.
This should have no functional change on undo, but it does facilitate
testing undo behavior.

Revision 1.40 / (download) - annotate - [select for diffs], Sun Jun 29 08:28:01 2008 UTC (15 years, 10 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.39: +28 -15 lines
Diff to previous 1.39 (colored)

documentation tweaks.

Revision 1.39 / (download) - annotate - [select for diffs], Sun Jun 15 21:01:55 2008 UTC (15 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.38: +21 -21 lines
Diff to previous 1.38 (colored)

first pass: it would be nice if mg users read over this page and sent us
any fixes;

Revision 1.38 / (download) - annotate - [select for diffs], Sun Jun 15 07:53:58 2008 UTC (15 years, 11 months ago) by kjell
Branch: MAIN
Changes since 1.37: +6 -5 lines
Diff to previous 1.37 (colored)

Typos, forgotten word

Revision 1.37 / (download) - annotate - [select for diffs], Sun Jun 15 07:31:41 2008 UTC (15 years, 11 months ago) by kjell
Branch: MAIN
Changes since 1.36: +677 -74 lines
Diff to previous 1.36 (colored)

How about we actually document the 230-odd functions that make up
mg now? Keymaps, too.
I've guaranteed to have mucked up somewhere in here, but really -
this man page can't really get less useful.
Modes to come.

Revision 1.36 / (download) - annotate - [select for diffs], Thu May 29 19:58:15 2008 UTC (15 years, 11 months ago) by sobrado
Branch: MAIN
Changes since 1.35: +7 -5 lines
Diff to previous 1.35 (colored)

add a detailed synopsis to mg(1); synchronize with usage.

tweaks by jmc@

ok jmc@

Revision 1.35 / (download) - annotate - [select for diffs], Thu Jan 10 21:56:24 2008 UTC (16 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

kill trailing whitespace;

Revision 1.34 / (download) - annotate - [select for diffs], Thu Jan 10 20:13:34 2008 UTC (16 years, 4 months ago) by kjell
Branch: MAIN
Changes since 1.33: +3 -2 lines
Diff to previous 1.33 (colored)

This file is in the public domain. ok deraadt@

Revision 1.33 / (download) - annotate - [select for diffs], Thu Jan 10 20:12:45 2008 UTC (16 years, 4 months ago) by kjell
Branch: MAIN
Changes since 1.32: +64 -59 lines
Diff to previous 1.32 (colored)

Greatly improve this man page. ok jmc@

Revision 1.32 / (download) - annotate - [select for diffs], Thu May 31 19:20:13 2007 UTC (16 years, 11 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored)

convert to new .Dd format;

Revision 1.31 / (download) - annotate - [select for diffs], Tue Feb 20 04:26:26 2007 UTC (17 years, 3 months ago) by cloder
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.30: +1 -3 lines
Diff to previous 1.30 (colored)

Back out -h doc after discussion with theo

Revision 1.30 / (download) - annotate - [select for diffs], Tue Feb 20 04:10:32 2007 UTC (17 years, 3 months ago) by cloder
Branch: MAIN
Changes since 1.29: +3 -1 lines
Diff to previous 1.29 (colored)

Document -h option.

Revision 1.29 / (download) - annotate - [select for diffs], Fri Dec 29 17:07:32 2006 UTC (17 years, 4 months ago) by reyk
Branch: MAIN
Changes since 1.28: +28 -16 lines
Diff to previous 1.28 (colored)

mention meta-key-mode in mg(1) to enable 8-bit character input. this
is required if you need to type characters like german umlauts. the mg
documentation is still very incomplete and will need some more work.

also split the manpage into sections to make it a bit more readable.

ok jmc@

Revision 1.28 / (download) - annotate - [select for diffs], Sat Sep 2 20:06:48 2006 UTC (17 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.27: +9 -6 lines
Diff to previous 1.27 (colored)

various improvements from deanna phillips; tweaked by myself
ok kjell

Revision 1.27 / (download) - annotate - [select for diffs], Mon Jul 17 15:31:23 2006 UTC (17 years, 10 months ago) by kjell
Branch: MAIN
Changes since 1.26: +1 -14 lines
Diff to previous 1.26 (colored)

These bugs were fixed long ago.

Revision 1.26 / (download) - annotate - [select for diffs], Mon May 8 19:28:21 2006 UTC (18 years ago) by kjell
Branch: MAIN
Changes since 1.25: +5 -3 lines
Diff to previous 1.25 (colored)

minor man page tweaks. From han boetes.

Revision 1.25 / (download) - annotate - [select for diffs], Tue Oct 11 19:57:17 2005 UTC (18 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.24: +25 -26 lines
Diff to previous 1.24 (colored)

bit more consistency in the list of key bindings;
ok kjell@

Revision 1.24 / (download) - annotate - [select for diffs], Tue Oct 11 04:53:56 2005 UTC (18 years, 7 months ago) by kjell
Branch: MAIN
Changes since 1.23: +2 -5 lines
Diff to previous 1.23 (colored)

fix undo BUGS entry. ok deraadt@

Revision 1.23 / (download) - annotate - [select for diffs], Tue Oct 11 04:36:55 2005 UTC (18 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.22: +4 -2 lines
Diff to previous 1.22 (colored)

document a few more things; kjell ok

Revision 1.22 / (download) - annotate - [select for diffs], Sat Mar 12 09:12:56 2005 UTC (19 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.21: +6 -5 lines
Diff to previous 1.21 (colored)

- tweak synopsis
- avoid line splits
- minor tweaks

Revision 1.21 / (download) - annotate - [select for diffs], Thu Mar 10 16:47:34 2005 UTC (19 years, 2 months ago) by henning
Branch: MAIN
Changes since 1.20: +4 -2 lines
Diff to previous 1.20 (colored)

add -n command line switch to disable backup file generation, handy
when you use mg for your mail from within mutt etc
from PR3930, Carson Harding <harding@motd.ca>, Thanks!

Revision 1.20 / (download) - annotate - [select for diffs], Mon Jul 26 16:25:10 2004 UTC (19 years, 9 months ago) by mjc
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.19: +4 -1 lines
Diff to previous 1.19 (colored)

document behaviour of mg +-number file
ok vincent@
better wording from jmc@

Revision 1.19 / (download) - annotate - [select for diffs], Tue Sep 2 18:50:06 2003 UTC (20 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored)

escape punctuation;
ok deraadt@

Revision 1.18 / (download) - annotate - [select for diffs], Tue Jun 10 09:12:11 2003 UTC (20 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.17: +6 -6 lines
Diff to previous 1.17 (colored)

- section reorder
- COMPATIBILITY merge
- macro cleanup
- kill whitespace at EOL
- new sentence, new line

ssh pages ok markus@

Revision 1.17 / (download) - annotate - [select for diffs], Mon May 5 22:05:57 2003 UTC (21 years ago) by vincent
Branch: MAIN
Changes since 1.16: +8 -3 lines
Diff to previous 1.16 (colored)

document the new -f <mode> command line option.

ok jmc

Revision 1.16 / (download) - annotate - [select for diffs], Mon Jan 6 17:04:09 2003 UTC (21 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.15: +11 -2 lines
Diff to previous 1.15 (colored)

support +number; rewritten from buggy code by mjc@bitz.ca, vincent ok

Revision 1.15 / (download) - annotate - [select for diffs], Sun Jan 5 09:50:40 2003 UTC (21 years, 4 months ago) by pvalchev
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

Grammar fixes from jmc@prioris.mini.pw.edu.pl

Revision 1.14 / (download) - annotate - [select for diffs], Sat Sep 28 01:14:02 2002 UTC (21 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.13: +7 -1 lines
Diff to previous 1.13 (colored)

doc that undo is a teeny bit different

Revision 1.13 / (download) - annotate - [select for diffs], Fri May 10 19:53:18 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

doc error; soeren@thing.dk

Revision 1.12 / (download) - annotate - [select for diffs], Thu Feb 21 04:21:17 2002 UTC (22 years, 3 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.11: +3 -1 lines
Diff to previous 1.11 (colored)

document undo

Revision 1.11 / (download) - annotate - [select for diffs], Fri Feb 8 00:51:55 2002 UTC (22 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.10: +36 -20 lines
Diff to previous 1.10 (colored)

more docs...

Revision 1.10 / (download) - annotate - [select for diffs], Wed Apr 11 10:48:40 2001 UTC (23 years, 1 month ago) by bjc
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

"Amonst" -> "Amongst"

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jan 29 01:58:08 2001 UTC (23 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.8: +2 -0 lines
Diff to previous 1.8 (colored)

$OpenBSD$

Revision 1.8 / (download) - annotate - [select for diffs], Fri Nov 10 05:10:35 2000 UTC (23 years, 6 months ago) by aaron
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (colored)

- Section shuffling: comply to the section ordering outlined in mdoc(7).
- Some .Nm trimming.
- .Sh AUTHOR -> .Sh AUTHORS
- Other miscellaneous fixes here and there.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Apr 12 21:47:49 2000 UTC (24 years, 1 month ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.6: +1 -1 lines
Diff to previous 1.6 (colored)

Trailing whitespace begone!

Revision 1.6 / (download) - annotate - [select for diffs], Fri Mar 10 19:07:21 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.5: +18 -12 lines
Diff to previous 1.5 (colored)

Various cleanups and standardization.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Feb 29 20:35:19 2000 UTC (24 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.4: +2 -9 lines
Diff to previous 1.4 (colored)

some key binding examples

Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 29 19:49:48 2000 UTC (24 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.3: +66 -37 lines
Diff to previous 1.3 (colored)

some binding information

Revision 1.3 / (download) - annotate - [select for diffs], Mon Feb 28 14:59:54 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.2: +41 -38 lines
Diff to previous 1.2 (colored)

Lots of obvious clean-up, but needs more work.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Feb 25 19:10:22 2000 UTC (24 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +66 -89 lines
Diff to previous 1.1 (colored)

mandoc, but needs much more fleshing out

Revision 1.1 / (download) - annotate - [select for diffs], Fri Feb 25 19:08:49 2000 UTC (24 years, 2 months ago) by deraadt
Branch: MAIN

initial import of mg2a

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.