Grisha Levit

Results 5 comments of Grisha Levit
trafficstars

The test failure seems unrelated, is there something else I should do here?

To provide completions for `git some-command`, git completion [looks][2] for a function called `_git_some_command`. If `git-some-command` is written to be completed with argcomplete, you just need to define a wrapper...

Chrome mobile will remove `javascript:` from the start of pasted text. You need to go to the start of the URL in the address bar and add it back. Alternatively,...

I've been using a wrapper script saved in `~/.local/bin/clang` like: ```bash #!/data/data/com.termux/files/usr/bin/bash PREFIX=/data/data/com.termux/files/usr tuple=$HOSTTYPE-linux-android tool=${0##*/} tool=${tool#"$tuple-"} sdk=$(getprop ro.build.version.sdk) exec -a "$PREFIX/bin/$tuple$sdk-$tool" -- \ "$PREFIX/bin/$tool" "$@" ``` and linking `~/.local/bin/{clang,gcc}`, etc....

Completion for `time` is handled by `_comp_command` in bash-completion, with the goal of completing whatever command follows `time`. In your case, the command is `activate-global-python-argcomplete`, for which there is no...