1577 Commits

Author SHA1 Message Date
Igor Murzov
fff412b2f2 Revert "Another stab at making service completion work on Slackware."
This reverts commit 1a01e54d856fe2d9496cfaf6d9df8b75d87a9b52.
See http://thread.gmane.org/gmane.comp.shells.bash.completion.scm/2278
2011-11-09 04:49:37 +03:00
Ville Skyttä
88b897e224 _cd: Don't try to complete variables (and fail), _init_completion already does. 2011-11-06 23:48:59 +02:00
Ville Skyttä
1a01e54d85 Another stab at making service completion work on Slackware. 2011-11-06 14:22:39 +02:00
Ville Skyttä
a9873c8727 Revert "service, _services: Make these work on Slackware GNU/Linux."
This reverts commit 9717124ab7bad30b6d8ba02ef91850c6bb74dd63.
See http://thread.gmane.org/gmane.comp.shells.bash.completion.scm/2278
2011-11-06 14:00:04 +02:00
Igor Murzov
9717124ab7 service, _services: Make these work on Slackware GNU/Linux. 2011-11-05 20:44:17 +03:00
Igor Murzov
bc2d3c9a34 _known_hosts_real: Replace "${HOME}" with "~" to make code more compact. 2011-11-05 19:51:07 +03:00
Igor Murzov
74d80d17f9 _known_hosts_real: Add some quotes (Alioth #313158)
Should fix errors if $HOME contains spaces.
2011-11-05 19:41:34 +03:00
Ville Skyttä
370a550baf _mac_addresses: Grab addresses from FreeBSD's ifconfig -a output too. 2011-11-05 12:09:40 +02:00
Ville Skyttä
bfa8425a4a _known_hosts_real: Don't offer hostnames containing wildcards. 2011-11-05 00:59:13 +02:00
Ville Skyttä
333a5a50be _known_hosts_real: Handle more than two hostnames per known hosts line (Debian: #647352). 2011-11-05 00:53:39 +02:00
Ville Skyttä
b54d3f022f _known_hosts_real: Discard @markers at beginning of line. 2011-11-05 00:38:37 +02:00
Ville Skyttä
0b4f797700 Unset _blacklist_glob when it's no longer needed. 2011-11-04 21:32:28 +02:00
David Paleino
84e9e14dd8 Change version to 1.90 2011-11-03 12:21:58 +01:00
Ville Skyttä
0d10b94e7a Move Emacs indentation settings from every file to .dir-locals.el. 2011-11-01 22:14:45 +02:00
Ville Skyttä
8890abfdfb unzip, jar: Complete on *.sar (JBoss service archive). 2011-11-01 19:18:54 +02:00
Ville Skyttä
099b47c66d kill, killall: Add some option and argument completions, simplify _signals. 2011-10-26 21:01:18 +03:00
Ville Skyttä
79ac9b5921 _command_offset: Fall back to _minimal instead of _filedir for oddball cases. 2011-10-26 20:46:00 +03:00
Ville Skyttä
22f88858ee _command_offset: Load undefined completions on demand. 2011-10-26 20:44:22 +03:00
Ville Skyttä
802a72fd8f _command_offset: Drop unused variables, define some others only when needed. 2011-10-26 19:56:22 +03:00
Ville Skyttä
3b029892f6 _init_completion: Improve variable name completion.
Complete only things that look like variable names to make things like
$HOME/<TAB> and $(<TAB> pass through, and fix completion of variables
enclosed in braces.
2011-10-25 20:15:13 +03:00
Igor Murzov
1bdf31c894 Don't use full path in the _completion_loader() function. 2011-10-24 20:40:45 +03:00
Ville Skyttä
8fe4a73f9a _completion_loader: Use _minimal instead of _longopt as fallback.
_longopt may end up invoking the completed command with --help which
may not be safe for all arbitrary commands out there.
2011-10-23 11:32:13 +03:00
Ville Skyttä
f6cd9344fb _completion_loader: Use _longopt as the fallback. 2011-10-23 11:09:48 +03:00
Ville Skyttä
ff8e52c960 _init_completion: Complete variable names. 2011-10-23 11:02:46 +03:00
Ville Skyttä
5afc526850 Make _userland easier to use. 2011-10-16 10:56:44 +03:00
Ville Skyttä
e179afe3c3 Fall back to generic completion for commands we don't have anything for. 2011-10-15 10:20:46 +03:00
Ville Skyttä
449c71fa74 Get rid of remaining $UNAME and $USERLAND uses.
Use $OSTYPE and _userland() instead.
2011-10-13 21:37:34 +03:00
Ville Skyttä
5baebf81d3 Add _xfunc for loading and calling functions on demand, use it in apt-get, cvsps, rsync, and sshfs. 2011-10-13 21:15:05 +03:00
Ville Skyttä
daa4aba4c8 Fix loading completions when bash_completion was sourced without a path. 2011-10-13 21:08:43 +03:00
Ville Skyttä
86ca9ee598 Replace $UNAME with $OSTYPE in trivial cases.
$OSTYPE is automatically available at runtime (for dynamic loading).
2011-10-12 23:07:21 +03:00
Ville Skyttä
20c05b43b6 Load completions in separate files dynamically, get rid of have(). 2011-10-12 00:19:50 +03:00
Igor Murzov
5051b1787a _command_offset: Restore compopts used by called command.
This fixes completions that rely on their compopts, most notably mount(8).
Fixes bash-completion bug #313183.
2011-09-30 22:21:47 +04:00
Ville Skyttä
89b7923cb8 ping, tracepath: Split to iputils, add option completions. 2011-09-28 18:59:15 +03:00
Ville Skyttä
9d146b9ba5 _known_hosts: Signal end of options to _known_hosts_real.
Fixes for example "ping --<TAB>":
error: _known_hosts_real: missing mandatory argument CWORD
2011-09-28 08:34:54 +03:00
Ville Skyttä
2f90dc7ecf Make _filedir's "fallback to everything" behavior optional, and off by default.
Configuration variable: COMP_FILEDIR_FALLBACK
http://thread.gmane.org/gmane.comp.shells.bash.completion.devel/3357
2011-09-19 19:42:52 +03:00
Ville Skyttä
bff8677599 gprof: New non-generic completion.
Neither _longopt, _parse_help, or _parse_usage do a very good job at
all parsing gprof's --help output.
2011-08-20 11:19:42 +03:00
Ville Skyttä
95ea13a0f0 _longopt: Don't offer completions after --help, --usage, or --version. 2011-07-22 00:10:36 +03:00
Ville Skyttä
7137e60a45 base64: New _longopt completion. 2011-07-21 23:59:41 +03:00
Ville Skyttä
fe4ae55f34 _longopt: Don't use -o default with it to make splitting work as intended. 2011-07-21 23:57:49 +03:00
David Paleino
d689342a75 Revert "Revert "host, nslookup: Remove completions for bind utils from bash_completion.""
This reverts commit 82325b37a91343c19ec4067fca00153bd635bfc8.
2011-07-18 13:21:23 +02:00
David Paleino
82325b37a9 Revert "host, nslookup: Remove completions for bind utils from bash_completion."
This reverts commit bd482ca2f221323aa461ca75c9457ec11f43570e.
2011-07-18 11:46:13 +02:00
Igor Murzov
bd482ca2f2 host, nslookup: Remove completions for bind utils from bash_completion.
This fixes tests on systems without bind.
2011-07-18 02:48:42 +04:00
Ville Skyttä
b68cc0057f curl: New non-generic completion. 2011-07-12 00:07:35 +03:00
Ville Skyttä
102a19c8a2 _parse_help: Treat " or " as a separator when parsing options. 2011-07-10 15:25:23 +03:00
Ville Skyttä
e7b3abf689 sum: New (generic long option) completion (RedHat: #717341). 2011-06-29 00:24:46 +03:00
Igor Murzov
b13ee019d0 make completions that use _command also work with file names 2011-06-26 04:04:53 +04:00
Ville Skyttä
472b5bb958 _services: Include systemd services. 2011-06-18 23:26:19 +03:00
Ville Skyttä
50d44ca3a4 _services: Avoid bogus completions when init or xinetd dirs exist but are empty. 2011-06-18 23:01:00 +03:00
Ville Skyttä
a52c4ea382 __parse_options: Remove trailing [().]* from completions. 2011-06-18 15:44:43 +03:00
David Paleino
2a05603ecd Implemented a blacklist for unwanted third-parties completions 2011-06-14 21:31:02 +02:00