aboutsummaryrefslogtreecommitdiff
path: root/src/arm/PL1/kernel/psr.h
AgeCommit message (Expand)Author
2020-01-13Great Reorganisation, modify structure and makefilevetch
22-01-16 23:56:56 +0100'>2022-01-16bash completion: Fix options completion.Fulbert Fixes, for example, "guix import pypi --<TAB>", which would previously fail to show '--recursive'. * etc/completion/bash/guix (_guix_complete_option): Fix options completion for first subcommand. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2021-12-08bash completion: Complete ‘guix shell -f’.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Suggest a file name following ‘guix shell […] -f’. 2021-10-31bash completion: Complete top-level options.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_option): Fix operation without a {,sub}command. (_guix_complete): Call it also when no command is given. 2021-10-31bash completion: Don't hard-code "guix" binary name.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_command): Use ${COMP_WORDS[0]} instead of hard-coding "guix". 2021-10-25Add 'guix shell'.Ludovic Courtès * guix/scripts/shell.scm, tests/guix-shell.sh: New files. * Makefile.am (MODULES): Add 'shell.scm'. (SH_TESTS): Add 'tests/guix-shell.sh'. * guix/scripts/environment.scm (show-environment-options-help): New procedure. (show-help): Use it. (guix-environment*): New procedure. (guix-environment): Use it. * po/guix/POTFILES.in: Add it. * doc/guix.texi (Features): Refer to "guix shell" (Invoking guix package): Likewise. (Development): Likewise. (Invoking guix shell): New node. (Invoking guix environment): Add deprecation warning. (Debugging Build Failures): Use 'guix shell' in examples. (Invoking guix container): Refer to 'guix shell'. (Invoking guix processes, Virtualization Services): Adjust examples to use 'guix shell'. * doc/contributing.texi (Building from Git): Refer to 'guix shell'. * etc/completion/bash/guix: Handle "shell". 2021-10-24etc: completion: Filter gratuitous spaces from available packages.Liliana Marie Prikler Tested with: guix environment --{ad-hoc,pure} zsh guix bash-completion coreutils -- zsh % fpath=(~/guix/etc/completion/zsh $fpath) % autoload -U compinit; compinit * etc/completion/zsh/_guix (_guix_list_available_packages): Remove spaces. Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr> 2021-10-03bash completion: Fix ‘system’ & ‘container’ subcommands.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Count words from the innermost command. 2021-10-03bash completion: Complete ‘guix size’ file names.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Complete store file names after the ‘size’ command. 2021-10-03bash completion: Complete ‘guix build’ file names.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_available_package_or_store_file): New function. (_guix_complete): Call it in place of _guix_complete_available_package after the ‘build’ command. 2021-10-03bash completion: Complete ‘guix weather’ packages.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Complete available package names for ‘guix weather’ when not following ‘-m’. 2021-10-03bash completion: Append to $COMPREPLY where possible.Tobias Geerinckx-Rice _guix_complete is always called with a fresh empty array. * etc/completion/bash/guix (_guix_complete_command) (_guix_complete_subcommand, _guix_complete_installed_package) (_guix_complete_option, _guix_complete_pid): Append to $COMPREPLY rather than re-assigning. 2021-10-03bash completion: Consolidate similar $command ‘if’ branches.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete): Combine the ‘upgrade’ and ‘remove’ commands, as well as ‘download’, ‘gc’, and ‘hash’. 2021-08-28zsh completion: Add missing commands and arguments.Noah Evans * etc/completion/zsh/_guix (_guix_install, _guix_remove, _guix_upgrade): New functions. (_guix_build, _guix_challenge, _guix_download, _guix_environment, _guix_packages, _guix_gc, _guix_hash, _guix_lint, _guix_package, _guix_publish, _guix_pull, _guix_refresh, _guix_size, _guix_system): Add some of the missing arguments. (_guix_cmds): Add missing commands. Co-authored-by: Brice Waegeneire <brice@waegenei.re> 2021-06-16bash_completion: Complete options for ‘guix environment’.Tobias Geerinckx-Rice Note that there are still plenty of bugs that this series didn't fix, e.g.: $ guix time-machine -- system reconf<Tab> * etc/completion/bash/guix (_guix_complete): Call _guix_complete_option if the word at point looks like an option. 2021-06-16bash completion: Complete options for the right command.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_complete_option): Receive two arguments and complete the second based on the first, instead of blindly completing the very last word based on the very first (sub)command. (_guix_complete): Adjust both calls. 2021-06-16bash completion: Really support subcommands.Tobias Geerinckx-Rice * etc/completion/bash/guix (_guix_is_option): New function. (_guix_is_command): Remove function to replace it with simple string comparison… (_guix_complete): …here. Complete the ‘innermost’ command at point.