Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nerrons
purr-data
Commits
fccac0c8
Commit
fccac0c8
authored
10 years ago
by
Ivica Bukvic
Browse files
Options
Downloads
Patches
Plain Diff
*replaced old pd bash completion script with pd-l2ork's
parent
c3a06e9d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/bash_completion/pd
+0
-102
0 additions, 102 deletions
scripts/bash_completion/pd
with
0 additions
and
102 deletions
scripts/bash_completion/pd
deleted
100644 → 0
+
0
−
102
View file @
c3a06e9d
#
# bash_completion file for Pd.
#
# Save as: /etc/bash_completion.d/pd or ~/.bash_completion and enjoy never
# having to type any full command line option anymore. Instead you can press
# <TAB>.
#
# If you want to help, these are fine introductions to bash's completion
# feature:
#
# http://www.debian-administration.org/articles/316
# http://www.debian-administration.org/articles/317
#
# First version written by Frank Barknecht <fbar AT footils.org> Dec 26 2005
have pd &&
_pd()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
# Pd's options:
opts="-help \
-r \
-audioindev \
-audiooutdev \
-audiodev \
-inchannels \
-outchannels \
-channels \
-audiobuf \
-blocksize \
-sleepgrain \
-nodac \
-noadc \
-noaudio \
-listdev \
-oss \
-32bit \
-alsa \
-alsaadd \
-jack \
-midiindev \
-midioutdev \
-mididev \
-nomidiin \
-nomidiout \
-nomidi \
-alsamidi \
-path \
-nostdpath \
-stdpath \
-helppath \
-open \
-lib \
-font \
-typeface \
-verbose \
-version \
-d \
-noloadbang \
-stderr \
-nogui \
-guiport \
-guicmd \
-send \
-noprefs \
-rt \
-realtime \
-nrt"
# options that require an argument:
case "${prev}" in
# directory argument:
# TODO: colon-separated paths as in "/usr/lib/pd/extra:/home/user/pd"
-path)
COMPREPLY=( $(compgen -d ${cur}) )
return 0
;;
-helppath)
COMPREPLY=( $(compgen -d ${cur}) )
return 0
;;
# patch file argument:
-open)
_filedir '@(pd|pat)'
return 0
;;
*)
;;
esac
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
else
_filedir '@(pd|pat)'
fi
}
[ "${have:-}" ] && complete -F _pd $filenames pd
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment