Stephen Holdaway
Stephen Holdaway
Can you check for relevant messages in the the kernel logs when you plug it in? ```sh sudo dmesg -w ``` Success looks like this:  If the computer's hardware...
Hey @nifr, I'm interested in adding this, though it'll be a bit of challenge making it run fast enough for completion to not be painful _and_ show reasonably up to...
I kind of agree, though I'm sure there are some light-weight templating libraries that mitigate the large dependency issue (if it even is an issue?). The scripts should definitely be...
The intended use is to put the generate-hook call in your shell profile rather than generating a hook and saving the output in the shell profile, so this doesn't really...
@aik099, your list of things needed is good, except for: > 3. update hook generation instructions to use this command > `[ -f /absolute/path/to/app ] ...` It makes sense for...
> I'm confused. In # 30 (comment) you said that you prefer real-time hook generation vs generating hook once and installing it. So what is it? Real-time. Perhaps our interpretations...
More built-in completions would be good, and they would certainly need to be implementations of `CompletionInterface`. I wouldn't want to have an enormous number of library provided completions, but having...
A process always starts with its current working directory set the same as the process that created it. > A child process created via fork(2) inherits its parent's current working...
[`compgen` is actually built into BASH](https://www.gnu.org/software/bash/manual/bashref.html#Programmable-Completion-Builtins-1), so it can't be run as a standalone program. You can do this though (provided the system has BASH installed): ``` php exec("bash -c...
Happy to have Fish support added :+1: [`CompletionCommand:: escapeForShell`](https://github.com/stecman/symfony-console-completion/blob/0.10.1/src/CompletionCommand.php#L139) is probably in the wrong place responsibility-wise, so splitting out each supported shell into its own class sounds like a good...