summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Expand)Author
2019-05-31Allow % strings that are all numbers or %s, and fix a double free. BothNicholas Marriott
2019-05-31fix ssh-keysign fd handling problem introduced in r1.304 caused by a typoDamien Miller
2019-05-30Remove a leftover abort and some fixes from cppcheck.Nicholas Marriott
2019-05-30No longer need to reduce line number by one.Nicholas Marriott
2019-05-30I had hoped that non-xenl terminals had died out, at least in fairlyNicholas Marriott
2019-05-29Use VIS_CSTYLE for the arguments and add the missing escapes it canNicholas Marriott
2019-05-29The line number needs to be updated only after the \n is processed byNicholas Marriott
2019-05-29Support \ooo escapes, from Avi Halachmi.Nicholas Marriott
2019-05-29Make the standard output messages of both methods of changing a keyMark Lumsden
2019-05-28Redraw status line if size changes, GitHub issue 1762. Also fix lengthNicholas Marriott
2019-05-28Do not read past the end of the argument string if it is empty.Nicholas Marriott
2019-05-28unintialized fd passed to close(), found by hiltjo posthumaTheo de Raadt
2019-05-28Exit 1 correctly if source-file fails.Nicholas Marriott
2019-05-28Allow source-file to take multiple arguments.Nicholas Marriott
2019-05-28Change the default right click pane to open the menu if not in a modeNicholas Marriott
2019-05-28Add key bindings to open the window and pane menus (C-m and M-m for now).Nicholas Marriott
2019-05-28Allow menu items to be disabled by putting a - at the start of theirNicholas Marriott
2019-05-28Change display-menu from taking a single string to a set of arguments,Nicholas Marriott
2019-05-27Clarify newlines inside {} a little.Nicholas Marriott
2019-05-27Go less crazy with horizontal separators on default menus.Nicholas Marriott
2019-05-27For "gunzip -N", only use the basename of the stored path.Todd C. Miller
2019-05-27Fix crash when killing the current window, reported by Jesus RafaelNicholas Marriott
2019-05-27Add an additional {} syntax for defining strings in the configurationNicholas Marriott
2019-05-27Use getopts instead of getopt(1)Jeremie Courreges-Anglas
2019-05-27Fix the intended ordering of items in buffer mode - it should not alwaysNicholas Marriott
2019-05-26Add keys for new menu items.Nicholas Marriott
2019-05-26Always redraw overlay if it is on (so status line doesn't redraw over it).Nicholas Marriott
2019-05-26Do not accept choice unless mouse has actually moved before.Nicholas Marriott
2019-05-26Add formats for word and line under the mouse and use them to add someNicholas Marriott
2019-05-26Add a way to append or prepend to a format if the length has been limited.Nicholas Marriott
2019-05-26Some other platforms doesn't support fmemopen(3) (not unexpectedly), soNicholas Marriott
2019-05-26use proper crossreferencesChristian Weisgerber
2019-05-25Add <, >, <=, >= for formats, GitHub issue 1747.Nicholas Marriott
2019-05-25Client name can actually be NULL, so use address in that case.Nicholas Marriott
2019-05-25Use client name when logging command queue.Nicholas Marriott
2019-05-25Merge the now tiny cmd-list.c into cmd.c.Nicholas Marriott
2019-05-25Merge cmd_list_parse into cmd-parse.y so it can use the new aliasNicholas Marriott
2019-05-25Fix error handling in if-shell.Nicholas Marriott
2019-05-25Make cmd_log_argv take a printf-like format for the prefix.Nicholas Marriott
2019-05-23unbreak build, okay nicm@Marc Espie
2019-05-23Fix line numbers - commands are added after the line ends so they need toNicholas Marriott
2019-05-23Use the same argument escaping code for options as well.Nicholas Marriott
2019-05-23Environment variables can start with { also.Nicholas Marriott
2019-05-23Fix drawing of status-right when it is aligned to the centre, GitHubNicholas Marriott
2019-05-23Break the argument escaping code into a separate function and use it toNicholas Marriott
2019-05-23Don't remove group items for group 0 (no group).Nicholas Marriott
2019-05-23Fix length calculation for pasting UTF-8 characters in the status line,Nicholas Marriott
2019-05-23Replace the split parser code (cfg.c and cmd-string.c) with a singleNicholas Marriott
2019-05-22Fix crash if window doesn't exist, GitHub issue 1751.Nicholas Marriott
2019-05-21document brk_string slightly betterMarc Espie