aboutsummaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorFilesLines
2021-01-29man9: rename IM to MRFazlul Shahriar11-27/+27
Commit d32deab17bfffa5bffc5fab3e6577558e40888c5 renamed IM to MR but these man pages were missed.
2020-12-309a: remove a few mentionsRuss Cox1-15/+1
2020-12-30libthread: make pthreadperthread the defaultRuss Cox1-20/+14
2020-12-30libthread: add threadmaybackgroundRuss Cox1-12/+22
Programs that want to background themselves now need to define threadmaybackground returning 1. This avoids a confusing (to people and debuggers) extra parent process for all the threaded programs that will never want to background themselves.
2020-08-15tmac: rename IM (italic manual) to MR (manual reference)Russ Cox285-1587/+1587
Suggested by G. Brandon Robinson.
2020-08-13tmac: introduce real manual reference macro instead of overloading IRRuss Cox296-1773/+1784
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.
2020-07-22fontsrv(4): update man page for size of fontsrv subfontsRuss Cox1-8/+8
Fixes #432.
2020-07-18acme: add font control messageRuss Cox1-1/+6
2020-05-29ed(1): fix documentation for list modeRuss Cox1-36/+36
I changed from 6 to 8 digits but forgot to update the man page.
2020-05-29ed: handle Unicode beyond the BMP correctly in list mode.sean1-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.
2020-05-29devdraw: accept 5- and 6-byte Unicode hex valuesRuss Cox1-7/+14
Alt X 1234 for U+1234 Alt X X 12345 for U+12345 Alt X X X 103456 for U+103456.
2020-05-29libdraw: handle larger number of subfontsRuss Cox1-1/+1
2020-05-18man: update man pages to say $HOME when accurateRuss Cox4-33/+37
Fixes #386.
2020-05-179c, 9l: accept CC9FLAGS from configRuss Cox1-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.
2020-05-05rc(1): mention /etc/shells in BUGS sectionRuss Cox1-0/+6
2020-05-04rc: allow unquoted = in command argumentsRuss Cox1-1/+1
dd fans rejoice! Also helps with commands like go test -run=x.
2020-05-04rc: move free carat handling into parserRuss Cox1-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.
2020-02-22Fix broken references to plan9.bell-labs.com/plan9Larkin Nickle1-1/+1
Fixes #357
2020-01-19all: remove Linux 2.4 vs 2.6 detectionRuss Cox2-24/+11
Linux 2.4 is dead. (The libthread code hasn't worked for Linux 2.4 for a long time.)
2020-01-15compress: remove (not distributed) from tar(1) manpage.sean1-1/+0
2020-01-15compress: import Plan9 compresssean1-0/+237
Add #define USED(x)... boilerplate compress: import Plan9 manpage.
2020-01-15winwatch: port based Plan 9 winwatchmarkvanatten1-0/+57
Port of Plan 9's winwatch(1).
2020-01-15soelim: manpage fixes.sean1-4/+3
2020-01-15soelim: import from Plan9sean1-0/+30
Add entry in lib/moveplan9.files to trigger relocation during INSTALL.
2020-01-13mouse(3): fix definition of MousectlRuss Cox1-4/+6
2020-01-13clock: import from plan 9Russ Cox1-5/+8
Fixes #250.
2020-01-13wintext: add tmux support, use in ", ""Russ Cox1-8/+10
Fixes #223.
2020-01-13Make venti's doc more accurateEdouard Klein2-8/+25
2020-01-12libthread: run first thread in proc on system stackRuss Cox1-0/+8
For pthread systems that are fussy about which stack is used, this makes sure that threadmain runs on a system stack. If you only use proccreate (never threadcreate), all threads run on system stacks.
2020-01-079term: add a "look" menu item (#299)Fazlul Shahriar1-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
2020-01-06acme(1): update man page to note -a trimming trailing spaces on PutRuss Cox1-6/+11
2019-10-29plumber: add -f (foreground) option (#288)Jason Felice1-1/+8
In MacOS, services run by launchd must run in the foreground, since launchd manages forking and other resources.
2019-04-05man/memdraw.3: fix typoNoah Evans1-1/+1
2018-11-16libdraw: redo default font construction to be hidpi-safeRuss Cox2-12/+2
If $font is not set, the default font is constructed from font data linked into every libdraw binary. That process was different from the usual openfont code, and so it was not hidpi-aware, resulting in very tiny fonts out of the box on hidpi systems, until users set $font. Fix this by using openfont to construct the default font, by recognizing the name *default* when looking for font and subfont file contents. Then all the hidpi scaling applies automatically. As a side effect, the concept of a 'default subfont' is gone, as are display->defaultsubfont, getdefont, and memgetdefont.
2018-11-15paint: add drawing program from 9front (#112)Tobias Heinicke1-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.
2017-10-01xd: add -R for runewise dumpLeah Neukirchen1-0/+7
Ported from Plan 9 2013-05-21. https://github.com/0intro/plan9/commit/b377a116d132865c011a3fb3ea76528ffd32963f Closes #16.
2017-09-14all: remove .cvsignore filesKare Nuorteva6-6/+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
2017-09-01all: update site from swtch.com to 9fans.github.ioRuss Cox2-11/+7
2017-09-01codereview: delete, now using GitHub pull requestsRuss Cox1-155/+0
2017-09-019(1): document gotcha with oh-my-zshRuss Cox1-0/+15
2017-07-16man: various cleanupRuss Cox26-49/+43
Change-Id: I9130e7d10ae42e894923097a7c97da802eb0d8c3 Reviewed-on: https://plan9port-review.googlesource.com/2962 Reviewed-by: Russ Cox <rsc@swtch.com>
2017-07-16man5, man6: delete empty dirsRuss Cox4-4/+0
Change-Id: Iff3843740d98f5fb79499d3b6024333361dfe755 Reviewed-on: https://plan9port-review.googlesource.com/2960 Reviewed-by: Russ Cox <rsc@swtch.com>
2017-07-16man1: document mouse keystrokes in acme, sam, 9termRuss Cox3-0/+40
Change-Id: Id99ce9a143a21009d93a1c6ba2d1f84a3588649f Reviewed-on: https://plan9port-review.googlesource.com/2942 Reviewed-by: Russ Cox <rsc@swtch.com>
2017-06-19svgpic: new program to convert pic to svgRuss Cox1-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>
2015-02-17man: document font syntaxesRuss Cox5-23/+130
Change-Id: Id441d4df192c47388af6b5da306f14d90f066d18 Reviewed-on: https://plan9port-review.googlesource.com/1173 Reviewed-by: Russ Cox <rsc@swtch.com>
2015-02-17libdraw: autoscale fonts when moving between low and high dpi screensRuss Cox1-0/+15
Change-Id: I6093955b222db89dfe437fb723593b173d888d01 Reviewed-on: https://plan9port-review.googlesource.com/1170 Reviewed-by: Russ Cox <rsc@swtch.com>
2014-11-16man: more Mercurial references changed to GitRuss Cox3-5/+5
Change-Id: I940a21d67b21b5dd139cb20b9fae9595506fc5ae
2014-11-16codereview: make commit -a the default; warn about uncommitted changes at uploadRuss Cox1-13/+13
also update README.md for github Change-Id: I7d578a902ffed7f6d69780721e29a1972b6f6992
2014-11-16all: update for GitRuss Cox2-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
2014-10-20col: import from plan 9, by popular demandRuss Cox1-0/+57
TBR=rsc https://codereview.appspot.com/158240043