summaryrefslogtreecommitdiffstats
path: root/man/man1
Commit message (Collapse)AuthorAgeFilesLines
* tmac: rename IM (italic manual) to MR (manual reference)Russ Cox2020-08-15118-568/+568
| | | | Suggested by G. Brandon Robinson.
* tmac: introduce real manual reference macro instead of overloading IRRuss Cox2020-08-13118-638/+646
| | | | | | | | | | | The overloading of IR emits magic \X'...' sequences that turn into HTML manual links. But not all such IR invocations should be manual links; those had to be written to avoid the IR macro before. Worse, the \X'...' ending the IR causes troff to emit only a single space after a period. Defining a new IM macro for manual references fixes both problems. Fixes #441.
* ed(1): fix documentation for list modeRuss Cox2020-05-291-36/+36
| | | | I changed from 6 to 8 digits but forgot to update the man page.
* ed: handle Unicode beyond the BMP correctly in list mode.sean2020-05-291-2/+10
| | | | | | | | | List mode was constrained to the BMP. This change introduces the following new list mode convention, using Go string literal syntax: Non-printing ASCII characters display as \xhh. Non-ASCII characters in the BMP display as \uhhhh. Characters beyond the BMP display as \Uhhhhhhhh.
* man: update man pages to say $HOME when accurateRuss Cox2020-05-184-33/+37
| | | | Fixes #386.
* 9c, 9l: accept CC9FLAGS from configRuss Cox2020-05-171-0/+9
| | | | | | | | | | Also, if CC9FLAGS includes -fsanitize=address (ASAN), predefine PLAN9PORT_ASAN for use by programs that need to know (mainly libthread). The 9c script used to have a variable called ngflags, which was ccflags except -g (ng stood for "no g"), but nothing needs it split out anymore, so simplify to just ccflags.
* rc(1): mention /etc/shells in BUGS sectionRuss Cox2020-05-051-0/+6
|
* rc: allow unquoted = in command argumentsRuss Cox2020-05-041-1/+1
| | | | | | dd fans rejoice! Also helps with commands like go test -run=x.
* rc: move free carat handling into parserRuss Cox2020-05-041-23/+3
| | | | | | | | | | | | | | | | | | | | | | | | This fixes at least one shell script (printfont) that expected 'x'`{y}'z' to mean 'x'^`{y}^'z' as it now does. Before it meant: 'x'^`{y} 'z' One surprise is that adjacent lists get a free carat: (x y z)(1 2 3) is (x1 y2 z3) This doesn't affect any rc script in Plan 9 or plan9port.
* Fix broken references to plan9.bell-labs.com/plan9Larkin Nickle2020-02-221-1/+1
| | | | Fixes #357
* all: remove Linux 2.4 vs 2.6 detectionRuss Cox2020-01-192-24/+11
| | | | | Linux 2.4 is dead. (The libthread code hasn't worked for Linux 2.4 for a long time.)
* compress: remove (not distributed) from tar(1) manpage.sean2020-01-151-1/+0
|
* compress: import Plan9 compresssean2020-01-151-0/+237
| | | | | | Add #define USED(x)... boilerplate compress: import Plan9 manpage.
* winwatch: port based Plan 9 winwatchmarkvanatten2020-01-151-0/+57
| | | Port of Plan 9's winwatch(1).
* soelim: manpage fixes.sean2020-01-151-4/+3
|
* soelim: import from Plan9sean2020-01-151-0/+30
| | | | | Add entry in lib/moveplan9.files to trigger relocation during INSTALL.
* clock: import from plan 9Russ Cox2020-01-131-5/+8
| | | | Fixes #250.
* wintext: add tmux support, use in ", ""Russ Cox2020-01-131-8/+10
| | | | Fixes #223.
* 9term: add a "look" menu item (#299)Fazlul Shahriar2020-01-071-0/+7
| | | | | | | Add a menu item which functions similar to acme's `Look` command. This is copied from 9front. See: https://code.9front.org/hg/plan9front/rev/1f1596dbca51 https://code.9front.org/hg/plan9front/rev/d2de1d2f7b48
* acme(1): update man page to note -a trimming trailing spaces on PutRuss Cox2020-01-061-6/+11
|
* paint: add drawing program from 9front (#112)Tobias Heinicke2018-11-151-0/+85
| | | | | | Paint first appeared in 9front. The 9front license is reproduced in the related source files - the original repository is located at https://code.9front.org/hg/plan9front.
* xd: add -R for runewise dumpLeah Neukirchen2017-10-011-0/+7
| | | | | | | Ported from Plan 9 2013-05-21. https://github.com/0intro/plan9/commit/b377a116d132865c011a3fb3ea76528ffd32963f Closes #16.
* all: remove .cvsignore filesKare Nuorteva2017-09-141-1/+0
| | | | | | | | | | Rename following .cvsignore files to .gitkeep since they are required by the build (directories must exist before build): - bin/fossil/.gitkeep - bin/fs/.gitkeep - bin/venti/.gitkeep Change-Id: I9c2865058480cffb3a4613f25e2eca1f7e5578c0
* all: update site from swtch.com to 9fans.github.ioRuss Cox2017-09-012-11/+7
|
* codereview: delete, now using GitHub pull requestsRuss Cox2017-09-011-155/+0
|
* 9(1): document gotcha with oh-my-zshRuss Cox2017-09-011-0/+15
|
* man: various cleanupRuss Cox2017-07-168-12/+15
| | | | | | Change-Id: I9130e7d10ae42e894923097a7c97da802eb0d8c3 Reviewed-on: https://plan9port-review.googlesource.com/2962 Reviewed-by: Russ Cox <rsc@swtch.com>
* man1: document mouse keystrokes in acme, sam, 9termRuss Cox2017-07-163-0/+40
| | | | | | Change-Id: Id99ce9a143a21009d93a1c6ba2d1f84a3588649f Reviewed-on: https://plan9port-review.googlesource.com/2942 Reviewed-by: Russ Cox <rsc@swtch.com>
* svgpic: new program to convert pic to svgRuss Cox2017-06-191-0/+15
| | | | | | | | | This is an experiment. Like tpic it's a copy-and-paste fork of pic. Change-Id: Ia22772bd5881c7904a6d8f8e0b46fde8cea89cbd Reviewed-on: https://plan9port-review.googlesource.com/2920 Reviewed-by: Russ Cox <rsc@swtch.com>
* man: document font syntaxesRuss Cox2015-02-172-0/+14
| | | | | | Change-Id: Id441d4df192c47388af6b5da306f14d90f066d18 Reviewed-on: https://plan9port-review.googlesource.com/1173 Reviewed-by: Russ Cox <rsc@swtch.com>
* man: more Mercurial references changed to GitRuss Cox2014-11-163-5/+5
| | | | Change-Id: I940a21d67b21b5dd139cb20b9fae9595506fc5ae
* codereview: make commit -a the default; warn about uncommitted changes at uploadRuss Cox2014-11-161-13/+13
| | | | | | also update README.md for github Change-Id: I7d578a902ffed7f6d69780721e29a1972b6f6992
* all: update for GitRuss Cox2014-11-162-95/+157
| | | | | | | | | | - rewrite .gitignore to use git patterns - mv hg(1) to git(1) and rewrite - add lib/git/commit-msg.hook - add skeleton codereview script - update codereview(1) Change-Id: I061cd8e4de77ebbd6037a7c5d1582cd1d986f62f
* col: import from plan 9, by popular demandRuss Cox2014-10-201-0/+57
| | | | | TBR=rsc https://codereview.appspot.com/158240043
* man/man1/0intro.1: update supported systems.Shenghou Ma2014-03-141-5/+7
| | | | | | LGTM=rsc R=rsc https://codereview.appspot.com/71070050
* xd: accept -S for 8-byte swapRuss Cox2013-03-111-0/+3
| | | | | R=rsc https://codereview.appspot.com/7565045
* acme: set $samfile (same as $%) during executionMarius Eriksen2012-11-251-0/+2
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/6854092
* acme: add $acmeshell to control execution shellMarius Eriksen2012-10-211-0/+6
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/6614056
* devdraw: MacBook retina supportRob Kroeger2012-10-161-0/+7
| | | | | | | | Enable with export devdrawretina=1 (everything will be smaller). R=rsc CC=plan9port.codebot http://codereview.appspot.com/6592072
* rc(1): remove FreeBSD versionRuss Cox2011-10-311-1/+1
|
* page(1): mention ghostscript, /dev/fdRuss Cox2011-10-311-0/+28
|
* devdraw: more fixes (thanks David Jeannot)Russ Cox2011-10-121-1/+1
|
* test: update from Plan 9David du Colombier2011-08-161-0/+7
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/4847051
* dd: update from Plan 9David du Colombier2011-08-161-0/+198
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/4850052
* man: import changes from plan 9David du Colombier2011-06-031-1/+2
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/4559071
* INSTALL: add -r flagPeter Saveliev2011-06-021-0/+10
| | | | | | R=rsc CC=plan9port.codebot http://codereview.appspot.com/4526096
* man: import fixes from plan 9 (0intro@gmail.com)Russ Cox2011-05-102-3/+3
| | | | | R=rsc http://codereview.appspot.com/4519049
* 9term, acme: autoscrollRuss Cox2011-04-273-14/+16
| | | | | | | | | | | | | | | | Ignore scroll/noscroll window setting. Instead, scroll when the write begins in or immediately after the displayed window content. In the new scrolling discipline, executing "Noscroll" is replaced by typing Page Up or using the mouse to scroll higher in the buffer, and executing "Scroll" is replaced by typing End or using the mouse to scroll to the bottom of the buffer. R=r, r2 http://codereview.appspot.com/4433060
* 9term: add -c to force cooked modeDavid Swasey2010-05-191-2/+7
| | | | | | R=rsc CC=codebot http://codereview.appspot.com/1044043
* install(1): cvs -> hgEoghan Sherry2010-03-192-4/+4
| | | | | | R=rsc CC=codebot http://codereview.appspot.com/637041