Magniquick

Results 23 comments of Magniquick

Hope I didn't do anything stupid The ps manpage on darwin: [psman.txt](https://github.com/Freed-Wu/fzf-tab-source/files/14975114/psman.txt)

> ## Walkthrough > > The recent update simplifies a portion of a shell script by removing a conditional check involving the `$group` variable. This alteration streamlines the execution flow,...

```zsh zstyle ':completion:*:*:*:*:processes' command "ps -u $USER -o pid,user,comm -w -w" ``` does fix all the processes not being completed, but AFAIK, fzf-tab-source only handles previews, right ?

Hope I didn't do anything stupid The ps manpage on darwin: [psman.txt](https://github.com/Freed-Wu/fzf-tab-source/files/14975114/psman.txt)

(still isn't fixed. reopen maybe ?)

(still isn't fixed. reopen maybe ?)

In #18, I did mention a working solution - ```sh # give a preview of commandline arguments when completing `kill` zstyle ':completion:*:*:*:*:processes' command "ps -u $USER -o pid,user,comm -w -w"...

In #18, I did mention a working solution - ```sh # give a preview of commandline arguments when completing `kill` zstyle ':completion:*:*:*:*:processes' command "ps -u $USER -o pid,user,comm -w -w"...

see #19 for I fix I implemented.