1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

deskutils/fasd: Shell helper program to autocomplete paths faster

PR:		228969
This commit is contained in:
David Naylor 2018-12-12 14:17:08 +00:00
parent 470cba1f04
commit bbbef70174
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=487296
5 changed files with 36 additions and 0 deletions

View File

@ -51,6 +51,7 @@
SUBDIR += flameshot
SUBDIR += freemind
SUBDIR += freeplane
SUBDIR += fasd
SUBDIR += fusenshi
SUBDIR += gaddr
SUBDIR += ganttproject

20
deskutils/fasd/Makefile Normal file
View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= fasd
PORTVERSION= 1.0.1
CATEGORIES= deskutils
MAINTAINER= mail@dbalan.in
COMMENT= Shell helper program to autocomplete paths faster
LICENSE= MIT
USE_GITHUB= yes
GH_ACCOUNT= clvv
MAKE_ARGS+= prefix=${PREFIX} \
MANDIR=${MANPREFIX}/man
PLIST_FILES= bin/fasd man/man1/fasd.1.gz
.include <bsd.port.mk>

3
deskutils/fasd/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1528835657
SHA256 (clvv-fasd-1.0.1_GH0.tar.gz) = 88efdfbbed8df408699a14fa6c567450bf86480f5ff3dde42d0b3e1dee731f65
SIZE (clvv-fasd-1.0.1_GH0.tar.gz) = 16018

5
deskutils/fasd/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
Fasd is a handy shell helper program to access files and directories faster.
Fasd will try to expand path arguments from previously seen ones ordered by
frequency of access.
WWW: https://github.com/clvv/fasd

View File

@ -0,0 +1,7 @@
To get fasd working in a shell, some initialization code must be run. Put the
line below in your shell rc.
eval "$(fasd --init auto)"
This will setup a command hook that executes on every command and advanced tab
completion for zsh and bash.