aboutsummaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAgeFilesLines
* initHEADmasterEthan Morgan36 hours2-2/+2
|
* tmac/tmac.an: define .MR in a groff compatible wayDmitri Vereshchagin2025-07-27296-1621/+1621
| | | | | | | | | | | | | | | | groff 1.23.0 added .MR to its -man macro package. The NEWS file states that the inclusion of the macro "was prompted by its introduction to Plan 9 from User Space's troff in August 2020." From d32deab it seems that the name for Plan 9 from User Space's implementation was suggested by groff maintainer G. Brandon Robinson. Not sure if the intention was to make these definitions compatible, but it would be nice if they were. Currently, Plan 9 from User Space's .MR expects its second argument to be parenthesized. groff's .MR does not. This results in extra parentheses appearing in manual references when viewing Plan 9 from User Space's manual pages on a system using groff.
* src/cmd/rc: import rc syntax `delim{cmd} for splitting commands from 9atomlufia2025-07-271-0/+4
| | | | Co-authored-by: <ori@eigenstate.org>
* man: update indexesRuss Cox2024-06-153-3/+11
|
* acme: shift button 3 for reverse searchRuss Cox2024-06-155-25/+86
| | | | | An experiment. Let's see if it's any good. Also document the Mac conventions in devdraw(3).
* mntgen: import mntgen(4) from Plan 9fgergo2024-01-091-0/+32
| | | | | new file: man/man4/mntgen.4 new file: src/cmd/mntgen.c
* Fix a typozhenya-10072023-01-231-1/+1
|
* Fix tyopDavid Arnold2023-01-091-1/+1
|
* Modernise terminology (#573)mmnmnnmnmm2022-08-181-2/+2
|
* man/man3/stat.3: Update man page to match include/libc.h. Resolves Issue #530Ben Huntsman2022-05-111-2/+2
|
* src/cmd/acme: provide info on presense or absence of undo history (#528)Roger Peppe2021-10-191-3/+4
| | | | | | It's sometimes useful to know whether there's been editing activity in a window. This PR adds that information to the ctl file. Change-Id: I21a342ac636dd5c7701b3ed560e3526867329c2c
* lib9p: Remove postmountsrv (#505)Ben Huntsman2021-08-303-13/+3
|
* install(1): mention libfontconfig1-dev for DebianRuss Cox2021-04-091-1/+1
| | | | | | Also update install.txt, which mistakenly contained intro(1). Pointed out by Nicholas Schwartz.
* man9: rename IM to MRFazlul Shahriar2021-01-2911-27/+27
| | | | | Commit d32deab17bfffa5bffc5fab3e6577558e40888c5 renamed IM to MR but these man pages were missed.
* 9a: remove a few mentionsRuss Cox2020-12-301-15/+1
|
* libthread: make pthreadperthread the defaultRuss Cox2020-12-301-20/+14
|
* libthread: add threadmaybackgroundRuss Cox2020-12-301-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.
* tmac: rename IM (italic manual) to MR (manual reference)Russ Cox2020-08-15285-1587/+1587
| | | | Suggested by G. Brandon Robinson.
* tmac: introduce real manual reference macro instead of overloading IRRuss Cox2020-08-13296-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.
* fontsrv(4): update man page for size of fontsrv subfontsRuss Cox2020-07-221-8/+8
| | | | Fixes #432.
* acme: add font control messageRuss Cox2020-07-181-1/+6
|
* 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.
* devdraw: accept 5- and 6-byte Unicode hex valuesRuss Cox2020-05-291-7/+14
| | | | | | Alt X 1234 for U+1234 Alt X X 12345 for U+12345 Alt X X X 103456 for U+103456.
* libdraw: handle larger number of subfontsRuss Cox2020-05-291-1/+1
|
* 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.
* mouse(3): fix definition of MousectlRuss Cox2020-01-131-4/+6
|
* 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.
* Make venti's doc more accurateEdouard Klein2020-01-132-8/+25
|
* libthread: run first thread in proc on system stackRuss Cox2020-01-121-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.
* 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
|
* plumber: add -f (foreground) option (#288)Jason Felice2019-10-291-1/+8
| | | | In MacOS, services run by launchd must run in the foreground, since launchd manages forking and other resources.
* man/memdraw.3: fix typoNoah Evans2019-04-051-1/+1
|
* libdraw: redo default font construction to be hidpi-safeRuss Cox2018-11-162-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.
* 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-146-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