summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2011-04-17new sentence, new line;Jason McIntyre
2011-04-17Add -t to list-clients, based on a diff from Zac Sprackett.Nicholas Marriott
2011-04-17Fix character position check, from Tiago Resende.Nicholas Marriott
2011-04-16use "aucatN" for aucat(1) socket path and "midicatN" for midicat(1),Alexandre Ratchov
no need to increase entropy by inventing new names. Don't forget to rebuild libsndio after this change
2011-04-16for unix domain socket addresses use AUCAT_PATH and MIDICAT_PATHAlexandre Ratchov
macros instead of hardcoded strings. No object change
2011-04-16Since aucat supports any parameter combination sio_getcap() doesn'tAlexandre Ratchov
need to query the server for supported parameters. So stop using the AMSG_GETCAP message, and remove it completely from the aucat protocol.
2011-04-16Make aucat audio and midi backends share the same code to communicateAlexandre Ratchov
with the server. As we're at it use the same protocol for midi and audio. Now, both audio and midi code use the same SNDIO_DEBUG environment variable to turn on/off DPRINTF's.
2011-04-15Make the file_mbswidth() function cope if wcwidth() returns -1.Stefan Sperling
ok mikeb millert
2011-04-13mention valid -b sizes for ECDSA keys; bz#1862Damien Miller
2011-04-13improve wording; bz#1861Damien Miller
2011-04-12better document vi's startup (in terms of environment variablesJason McIntyre
and config files); diff from Alexis Fouilhe verified by millert
2011-04-12exit with 0 status on SIGTERM; bz#1879Damien Miller
2011-04-12fix -WshadowDamien Miller
2011-04-11-s comes before -t and also add -s to command syntax. Prompted by jmc.Nicholas Marriott
2011-04-11Add -s option to detach all clients attached to a session, from ZacNicholas Marriott
Sprackett.
2011-04-10Fix display glitch leading to crash. If we're reformatting, checkMartynas Venckus
the screens necessary to display the line and modify head or tail of the smap accordingly; since it might have changed due to e.g. smaller tabstop value. Reported by Patrick Keshishian who submitted a wrong diff and didn't care to even test this one. OK millert@, krw@.
2011-04-10Apply some tough type-love and give rdist a chance to handle filesKenneth R Westerback
larger than 2GB. Diff from Stephan R. Gerber via PR#6586, tweaks by me. ok deraadt@
2011-04-10Switch back from KERN_PROC2/kinfo_proc2 to KERN_PROC/kinfo_proc nowPhilip Guenthe
that we've got name we want for the API we want "ZAP!" deraadt@
2011-04-09Since buffers are now global, bump the default buffer-limit a bit higherNicholas Marriott
to 20 rather than 9.
2011-04-09If the terminal supports sitm for italics, use it instead of standoutNicholas Marriott
(smso). From Tiago Resende.
2011-04-08When a message is read (and processed), always call sock_write(), toAlexandre Ratchov
send any pending messages resulting from the processing (ACKs, position changes, volume changes). In theory the previous approach didn't ensuire that outgoing messages are not reordered.
2011-04-06Change so that an empty session name always means the current sessionsNicholas Marriott
even if given with, for example, -t '', and explicitly forbid empty session names and those containing a : when they are created.
2011-04-06Avoid using NULL in non-pointer contexts: use 0 for integer values and '\0'Miod Vallat
for chars.
2011-04-05On .de macro lines, after the new macro name, space and tab are equivalent.Ingo Schwarze
Bug reported by Tristan dot LeGuern at gmail dot com in fvwm(1). tweaks and ok kristaps@; earlier version looked good to espie@ as well
2011-04-05Add a flag to cmd_find_session so that attach-session can preferNicholas Marriott
unattached sessions when choosing the most recently used (if -t is not given). Suggested by claudio@.
2011-04-05Bind C-u to delete-line in vi mode like ksh does, suggested by thib.Nicholas Marriott
2011-04-05Remove FREEBSD_COMPAT bits and obsolete RTHREAD definePhilip Guenthe
2011-04-05the tree builds better when you don't use PF_FASTROUTEStuart Henderson
ok henning@ mikeb@
2011-04-05Add support to display numbers with thousands separatorsMarco Pfatschbacher
and to switch the ifstat view to Bits/s. This allows us to see live network throughput in units like MBit/s, which is more practical. OK sthen@, manpage OK jmc@, "put it in" deraadt@
2011-04-04previous commit introduced a crash: the removed strtol was being used toDamien Miller
skip past a value and it couldn't just be nuked
2011-04-03Call setlocale() to avoid display glitches in UTF-8 locales.Stefan Sperling
ok phessler nicm mikeb
2011-04-03Trim some very long unused debugging functions, from Michael WNicholas Marriott
Bombardieri. ok millert
2011-04-01Add calls to some existing but previously unused free functions. AlsoNicholas Marriott
replace a loop with a memset. From Michael W Bombardieri. ok millert
2011-04-01Move an isqrt() call outside a macro, from Michael W Bombardieri.Nicholas Marriott
ok ray
2011-04-01"or" should be on a line on its own here so it is not emphasised asNicholas Marriott
well.
2011-03-31add a BUFFERS section, to explain how they work;Jason McIntyre
from Alexis Fouilhe - many thanks to him for his work on this
2011-03-31Make the top line of systat stop updating, along with the rest of the datalum
when 'p' is pressed. ok nicm@
2011-03-29For convenience, work out what type of option is being set by nameNicholas Marriott
regardless of the -s or -w flags (these remain documented however).
2011-03-29Checking for particular options and redrawing is not necessary as weNicholas Marriott
already redraw unconditionally.
2011-03-29Update an out-of-date and inaccurate comment.Nicholas Marriott
2011-03-29Change -t on display-message to be target-pane for the #[A-Z]Nicholas Marriott
replacements and add -c as target-client.
2011-03-29print ipqos friendly string for sshd -T; ok markusKevin Steves
# sshd -Tf sshd_config|grep ipqos ipqos lowdelay throughput
2011-03-28Add -a and -s options to lsp to list all panes in the server or sessionNicholas Marriott
respectively. Likewise add -s to lsw. From Ben Boeckel.
2011-03-28Allow a start and end line to be specified for capture-pane which may beNicholas Marriott
negative to capture part of the history. Prompted by request from Victor J Orlikowski.
2011-03-28Style: uint -> u_int and a missing else.Nicholas Marriott
2011-03-27Set the terminal blocking again earlier, before sending the resetNicholas Marriott
sequences.
2011-03-27Don't include meta twice when working out the flags to output forNicholas Marriott
xterm-style keys - bit 3 is accepted on input but not on output. Also a style nit in the header.
2011-03-27Give each pane created in a tmux server a unique id (starting from 0),Nicholas Marriott
put it in the TMUX_PANE environment variable and accept it as a target. Suggested by and with testing and tweaks from Ben Boeckel.
2011-03-27- remove unused variablesJasper Lievisse Adriaanse
from Michael W. Bombardieri ok chl@ nicm@
2011-03-27- garbage collect unused buf_fappend(), which was also removed from ocvs'sJasper Lievisse Adriaanse
buf.c some time ago. from Michael W. Bombardieri ok chl@ nicm@