Re: sysutils/fzf: install shell support files

2020-01-17 Thread Edd Barrett
On Fri, Jan 17, 2020 at 03:53:55AM -0700, Aaron Bieber wrote: > > - port-lib-depends-check asked me to remove 'c pthread' so it > > disappears entirely. Right? > > This should remain in place for now. Right. So any OKs for the diff, putting back WANTLIB? -- Best Regards Edd Barrett

Re: sysutils/fzf: install shell support files

2020-01-17 Thread Aaron Bieber
PGP: 0x1F81112D62A9ADCE / 3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE > On Jan 17, 2020, at 3:42 AM, Edd Barrett wrote: > > Hi, > >> On Thu, Jan 16, 2020 at 06:08:08PM +, Edd Barrett wrote: >> My diff is below. We probably want to merge Aaron's diff with mine. > > Here's that

Re: sysutils/fzf: install shell support files

2020-01-17 Thread Edd Barrett
Hi, On Thu, Jan 16, 2020 at 06:08:08PM +, Edd Barrett wrote: > My diff is below. We probably want to merge Aaron's diff with mine. Here's that diff. I also updated to 0.20.0. Notes: - Generated vendor tarball by tarring up the result of 'go mod vendor'. - port-lib-depends-check asked me

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Matthew Martin
On Thu, Jan 16, 2020 at 05:28:49PM +, Stuart Henderson wrote: > On 2020/01/16 18:05, Paco Esteban wrote: > > Hi Edd, > > > > On Thu, 16 Jan 2020, Edd Barrett wrote: > > > > > Hi, > > > > > > This diff packages the necessary support files for for integrating fzf > > > with shells. > > > > >

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Edd Barrett
On Thu, Jan 16, 2020 at 10:54:41AM -0700, Aaron Bieber wrote: > +share/bash-completion/ > +share/bash-completion/completions/ > +share/bash-completion/completions/fzf > +share/zsh/ > +share/zsh/vendor-completions/ > +share/zsh/vendor-completions/_fzf ^^^ I don't think this is right. The

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Aaron Bieber
On Thu, 16 Jan 2020 at 17:28:49 +, Stuart Henderson wrote: > On 2020/01/16 18:05, Paco Esteban wrote: > > Hi Edd, > > > > On Thu, 16 Jan 2020, Edd Barrett wrote: > > > > > Hi, > > > > > > This diff packages the necessary support files for for integrating fzf > > > with shells. > > > > > >

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Stuart Henderson
On 2020/01/16 18:05, Paco Esteban wrote: > Hi Edd, > > On Thu, 16 Jan 2020, Edd Barrett wrote: > > > Hi, > > > > This diff packages the necessary support files for for integrating fzf > > with shells. > > > > With this change, enabling support in (e.g.) zsh is as simple as: > > > > ``` > >

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Paco Esteban
Hi Edd, On Thu, 16 Jan 2020, Edd Barrett wrote: > Hi, > > This diff packages the necessary support files for for integrating fzf > with shells. > > With this change, enabling support in (e.g.) zsh is as simple as: > > ``` > export FZF_DEFAULT_OPTS="--ansi" > .

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Matthew Martin
On Thu, Jan 16, 2020 at 03:49:43PM +, Edd Barrett wrote: > Hi, > > On Thu, Jan 16, 2020 at 08:47:43AM -0600, Matthew Martin wrote: > > On Thu, Jan 16, 2020 at 03:32:36PM +0100, Klemens Nanni wrote: > > > On Thu, Jan 16, 2020 at 02:20:09PM +, Edd Barrett wrote: > > > > > > export

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Edd Barrett
On Thu, Jan 16, 2020 at 03:49:43PM +, Edd Barrett wrote: > Do you have to do anything to have functionality loaded from fpath? I > was expecting these files to be automatically sourced, but it seems they > are not... I've just figured out that if you have the completions file in

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Edd Barrett
Hi, On Thu, Jan 16, 2020 at 08:47:43AM -0600, Matthew Martin wrote: > On Thu, Jan 16, 2020 at 03:32:36PM +0100, Klemens Nanni wrote: > > On Thu, Jan 16, 2020 at 02:20:09PM +, Edd Barrett wrote: > > > > export FZF_DEFAULT_OPTS="--ansi" > > > . /usr/local/share/fzf/shell/key-bindings.zsh > > >

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Matthew Martin
On Thu, Jan 16, 2020 at 03:32:36PM +0100, Klemens Nanni wrote: > On Thu, Jan 16, 2020 at 02:20:09PM +, Edd Barrett wrote: > > Hi, > > > > This diff packages the necessary support files for for integrating fzf > > with shells. > > > > With this change, enabling support in (e.g.) zsh is as

Re: sysutils/fzf: install shell support files

2020-01-16 Thread Klemens Nanni
On Thu, Jan 16, 2020 at 02:20:09PM +, Edd Barrett wrote: > Hi, > > This diff packages the necessary support files for for integrating fzf > with shells. > > With this change, enabling support in (e.g.) zsh is as simple as: > > ``` > export FZF_DEFAULT_OPTS="--ansi" > .

sysutils/fzf: install shell support files

2020-01-16 Thread Edd Barrett
Hi, This diff packages the necessary support files for for integrating fzf with shells. With this change, enabling support in (e.g.) zsh is as simple as: ``` export FZF_DEFAULT_OPTS="--ansi" . /usr/local/share/fzf/shell/key-bindings.zsh . /usr/local/share/fzf/shell/completion.zsh ``` OK?