summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2021-08-25Ignore client creating session when working out size if it is a controlNicholas Marriott
client.
2021-08-25bind-key needs to allow commands for any argument for the moment.Nicholas Marriott
2021-08-25Validate command argument types (string or command list) and give moreNicholas Marriott
useful error messages.
2021-08-25setupterm needs char * not const char * on some platforms.Nicholas Marriott
2021-08-25Fix up some printflike attributes.Nicholas Marriott
2021-08-25Start inputs as NULL so not freeing random stack garbage, GitHub issue 2852.Nicholas Marriott
2021-08-23args_make_commands_now needs to take an extra reference to the returnedNicholas Marriott
command list since it will be freed already.
2021-08-23Move command argument parsing common functions and don't bother to parseNicholas Marriott
again if given a command rather than a string.
2021-08-23Key bindings steal a reference to the command instead of adding theirNicholas Marriott
own, it was correct not to add a reference when parsing, but the bind-key then needs to add one.
2021-08-23Revert one of previous, for some reason it is being freed.Nicholas Marriott
2021-08-23Fix a few memory leaks.Nicholas Marriott
2021-08-23Limit width and height to tty correctly, GitHub issue 2843.Nicholas Marriott
2021-08-22Fix handling of leading #s when working out width.Nicholas Marriott
2021-08-22Do not double free expanded path in source-file, also remove someNicholas Marriott
unnecessary assignments.
2021-08-22Insert alias in the right place, GitHub issue 2842.Nicholas Marriott
2021-08-21Free value properly.Nicholas Marriott
2021-08-21Preserve argument type in command and convert to string on demand.Nicholas Marriott
2021-08-21Pass typed arguments out of the parser into the arguments list and letNicholas Marriott
it convert them into strings.
2021-08-21Use new syntax for default key bindings.Nicholas Marriott
2021-08-21Stop caring about empty commands, just treat as a null command.Nicholas Marriott
2021-08-21Remove some members of struct cmd which are no longer used.Nicholas Marriott
2021-08-21Preserve command group when moving temporary list to current list beingNicholas Marriott
buit.
2021-08-21Rename a member to match what it will be in future.Nicholas Marriott
2021-08-21Add args parsing callback for some future work, currently unused.Nicholas Marriott
2021-08-21Wrap command argument definitions in their own struct.Nicholas Marriott
2021-08-20A couple more spacing fixes.Nicholas Marriott
2021-08-20Spacing tweaks.Nicholas Marriott
2021-08-20Hide struct args behind a couple of accessor functions.Nicholas Marriott
2021-08-20Add a couple of const and fix some warnings.Nicholas Marriott
2021-08-20Remove some unnecessary blank lines.Nicholas Marriott
2021-08-20Expose args_value struct (will be needed soon) and add some missing frees.Nicholas Marriott
2021-08-20Add a way to create an empty arguments set.Nicholas Marriott
2021-08-20Remove stray spaces after function names.Nicholas Marriott
2021-08-20Fill colour palette correctly from option for new panes, GitHub issueNicholas Marriott
2831.
2021-08-20Actually parse contents of {} as a command and then convert to a stringNicholas Marriott
instead of just copying arguments around as strings.
2021-08-20Add a helper function for actually parsing the command.Nicholas Marriott
2021-08-20openssh-8.7Damien Miller
2021-08-19do not crash when a manpath directory contains a symbolic linkIngo Schwarze
that points to a directory rather than to a regular file; bug reported by Lukas Epple <sternenseemann at systemli dot org>, and my patch also tested by him on NixOS
2021-08-19fix the section number in the <title> element for preformatted pages;Ingo Schwarze
minibug reported by Ian <Ropers at gmail dot com> on misc@
2021-08-18Need to flatten arguments for aliases.Nicholas Marriott
2021-08-18Push the conversion of {} to string up out of the parser and into theNicholas Marriott
command builder.
2021-08-17Treat a pane that has died the same as no pane when sending data toNicholas Marriott
control mode clients, GitHub issue 2828.
2021-08-17Fix pipe-pane usage.Nicholas Marriott
2021-08-17Do not block with incremental command prompt.Nicholas Marriott
2021-08-17Set the right session if detach-on-destroy is off.Nicholas Marriott
2021-08-177.0-betaTheo de Raadt
2021-08-17calloc for confirm-before data since the item needs to start NULL.Nicholas Marriott
2021-08-17Be more sophisticated about enabling synchronized updates when there isNicholas Marriott
an overlay and treat it like the active pane (use for commands which move the cursor only). When there is an overlay also use it for all panes and not just the active pane. GitHub issue 2826.
2021-08-17Revert previous; this is not how it should work.Nicholas Marriott
2021-08-17Start sync before drawing popup.Nicholas Marriott