Fabian Homborg
db529f06b8
type: Use command -a
2017-06-28 23:13:36 +02:00
Kurtis Rader
bb29f9f990
replace __fish_urlencode with string escape
...
We now have a builtin that can do URL escaping so use it. I can't find
any uses of our private `__fish_urlencode` function in any Oh-My-Fish or
Fisherman code so remove it.
2017-06-23 22:46:36 -07:00
Kurtis Rader
30368d5526
implement status function
when in a breakpoint
...
Another step to fixing #1310 . This changes means that `status -L0
function` reports the correct function when inside a breakpoint.
2017-06-23 22:14:21 -07:00
Hector Sanjuan
2d42baac35
Fix last status report (it's always 0)
...
It seems something is overwriting the status before it is
saved to a variable. Fixed by setting the last_status variable
at the very beginning.
2017-06-22 14:01:19 +02:00
Kurtis Rader
df01547eab
implement the fish_breakpoint_prompt
function
...
This is another step to resolving issue #1310 . It makes
`fish_breakpoint_prompt` a replacement for `fish_prompt` if it is defined
and we're presenting a prompt in the context of a `breakpoint` command.
2017-06-20 17:18:59 -07:00
Kurtis Rader
bd299e96b2
implement status is-breakpoint
...
This implements `status is-breakpoint` that returns true if the current
shell prompt is displayed in the context of a `breakpoint` command.
This also fixes several bugs. Most notably making `breakpoint` a no-op if
the shell isn't interactive. Also, typing `breakpoint` at an interactive
prompt should be an error rather than creating a new nested debugging
context.
Partial fix for #1310
2017-06-20 17:18:59 -07:00
Rabah Meradi
d234a1870b
Aucompletion for jest CLI
2017-06-19 23:27:22 -07:00
Fabian Homborg
1a135aa0b0
git completions: Make checking aliases faster
...
See #4117 .
2017-06-19 11:04:40 +02:00
Clément Martinez
d5e1405cbe
Add as completions
2017-06-18 23:10:23 -07:00
Kurtis Rader
af22bf3501
style cleanups (make style-all)
2017-06-16 21:01:57 -07:00
Fabian Homborg
cec2999983
Allow help
to open the tutorial
...
This is unambiguous because all the anchors in tutorial.html begin
with "tut".
2017-06-14 13:52:24 +02:00
Fabian Homborg
82359ceb22
Update help completions
...
- More topics
- Some non-existent topics (todo/bugs) removed
- Some rewording (no more "Help on")
2017-06-14 13:40:14 +02:00
Clément Martinez
be1d32cade
Add grub-install completions
2017-06-14 12:41:38 +02:00
Clément Martinez
a69537ea13
Add grub-file completions
2017-06-14 12:41:38 +02:00
Dale Eidd
2b4f61f294
Fix echo "no wildcard match" complaints for ssh completions etc
2017-06-10 14:06:20 +02:00
Dale Eidd
5b3904e66b
Fix not including main ssh config in host names search
2017-06-10 14:06:20 +02:00
Clément Martinez
6161f54111
Add dhcpcd completions
2017-06-10 14:05:38 +02:00
Kurtis Rader
1f24432172
fix typo in error message
2017-06-09 12:12:36 -07:00
Daryl Roberts
a0c8a9e8ed
update the node options for __fish_not_contain_opt to not have the "--" in front of their flags
2017-06-09 12:11:10 -07:00
Fabian Homborg
edaef4e6b0
Fix stray quote in magento completions
...
Fixes #4108 .
2017-06-07 11:35:12 +02:00
Kurtis Rader
352cea1659
disable/enable bracketed paste by edit cmd buf
...
We need to disable/enable bracketed paste mode around running the editor
from within the `edit_command_buffer` function.
2017-06-05 11:32:06 -07:00
Kurtis Rader
5ef8b91db8
fix three explicitly translated messages
2017-06-02 20:40:58 -07:00
George Christou
5e39efa45b
Fix ln
file completion
2017-06-01 19:06:32 -07:00
Kurtis Rader
b8aacc29cd
remove redundant output from __fish_complete_cd
...
Fixes #4085
2017-06-01 18:55:41 -07:00
Kurtis Rader
ee646c8dd0
move set -l
to top of function
...
Fixes #4091
2017-06-01 17:58:29 -07:00
Martin Pelikan
65b0b947c9
Remove redundant/non-existent bind forward-kill-word
2017-06-01 17:50:05 -07:00
Kevin Ballard
3061eed647
Fix usage of osascript in help
...
Work around a macOS osascript bug in 10.12.5 which prevented help from
working. See #4035 .
2017-05-31 23:01:31 +08:00
Kevin Ballard
5c140e5570
Revert "Use open instead of osascript in help"
...
This reverts commit f234637e53
.
2017-05-31 23:01:31 +08:00
mascafidi
4c47fbc964
Add Expert Options to DUP command completion
2017-05-30 22:38:15 -07:00
ridiculousfish
2f5af733ba
Use open instead of webbrowser.open on macOS >= 10.12.5
...
Works around an osascript bug. Fixes #4035 .
2017-05-30 20:53:59 +08:00
ridiculousfish
f234637e53
Use open instead of osascript in help
...
Work around a macOS osascript bug in 10.12.5 which prevented help
from working. Fixes #4035 .
2017-05-30 20:53:59 +08:00
Fabian Homborg
0fc9ec5538
type: Fix "-a"
...
This matched _all_ executable commands, where it should only match all
executable commands _with the given name_.
Fixes #4070 .
2017-05-26 23:58:35 +02:00
Fabian Homborg
4afd41877f
Fix various expansions in cd completions
...
This actually used the built-in file-completion logic as a fallback
for e.g. tilde-expansion (stuff like `cd ~/V`).
Fixes #4061 .
2017-05-26 16:57:42 +02:00
Kevin Ballard
9bc1b44b0d
Handle missing groff macro in __fish_print_help
...
The Xcode installation of Fish is missing the groff macro used by
`__fish_print_help`. This caused e.g. `status -h` to stop working.
Fixes #4058 .
2017-05-23 19:57:18 -07:00
Kevin Ballard
4ff002b9fb
Turn off bracketed paste when Fish exits
2017-05-23 17:36:09 -07:00
Kurtis Rader
a71bb03f23
fix killall
completions
...
This fixes the obvious error in handling the `-u` short flag.
See issue #4052 .
2017-05-22 20:17:08 -07:00
Fabian Homborg
036b708d99
help: Properly error out when no browser is found
...
See #4045 .
2017-05-18 22:51:57 +02:00
Mo
71f5fe1ece
Added Magento2 CLI completions ( #4043 )
...
* Added Magento2 CLI completions
This is the completion file for the Magento2 CLI application I use on my servers. It has an additional feature tho, I'm not sure if it fits into the fish completion philosophy:
If you provide limited access credentials, it will connect to the MySQL database and provide additional suggestions, such as available users, themes or indexers in the database. If this file is never touched, those suggestions simply won't show up. I, personally, find them to be pretty useful, though.
Should I remove those database suggestions before creating a PR?
* Removed functions using MySQL, updated formatting
* Several smaller fixes
* Improved descriptions
Tried to shorten the text as much as possible and removed unnecessary characters
2017-05-18 17:05:49 +02:00
Sven Sternberger
cbd9181b7e
Update __fish_print_hostnames.fish
...
For Ubuntu the default global known host files are :
/etc/ssh/ssh_known_hosts
/etc/ssh/ssh_known_hosts2
2017-05-17 16:59:18 +02:00
Alan Somers
3aa42389ef
Fix syntax error in gphoto2 completions
2017-05-15 21:53:56 -07:00
Jonas Damtoft
573c539956
Gradle-completions for gradle tasks ( #3972 )
...
* Implement https://github.com/hanny24/gradle-fish/blob/master/gradle.load
* Use XDG_CACHE_HOME
* Use __funced_md5
* Fix fish_md5.fish
* Actually use the new function.
* Use string match for matching tasks
* I goofed. Actually pass a string to complete -a
* Fix attempt to remove needed function...
* Fix regex
* Fix fish_md5.fish to use a flag
2017-05-13 13:28:32 +02:00
Fabian Homborg
573e1ad4b1
type: Remove TODO
...
[Ci skip]
2017-05-11 15:24:47 +02:00
Clément Martinez
f0a00ab2f2
Add mkdosfs completions
2017-05-08 19:16:06 +02:00
Sebastian Keller
6620b9ec72
Add gsettings completions
2017-05-08 19:14:47 +02:00
Fabian Homborg
8814f34dc1
Improve killall completions
...
- Remove UID resolution, since that can be slow.
- Remove a `uname` call by storing the result
- Stringify
- Indent
Fixes #3996 .
2017-05-04 23:58:45 +02:00
Adriaan Zonnenberg
09ce297352
Add completions for caddy
2017-05-04 15:09:29 +02:00
Fabian Homborg
084a820de3
Stringify xrandr completions
2017-05-03 23:36:43 +02:00
Fabian Homborg
c06a71bfbe
Stringify hg completions
2017-05-03 23:36:25 +02:00
Fabian Homborg
044d45a0ff
Stringify adb completions
...
Also reindent.
2017-05-03 23:35:34 +02:00
David Adam
d3cfab1391
webconfig: apply colour syntax highlighting to functions tab
...
Closes #1432 .
2017-05-03 08:37:27 +10:00