aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
Commit message (Collapse)AuthorAge
* Rename __fish_complete_usb function.Gravatar Konrad Borowski2014-01-14
|
* 新文件: share/completions/lsusb.fishGravatar leafonsword2014-01-13
| | | | 新文件: share/functions/__fish_complete_usb.fish
* Fix __fish_print_packages for rpmGravatar Max Gonzih2014-01-13
|
* Fixes issue #1234. Fish now parses system wide ssh configuration file in ↵Gravatar Alexander I.Grafov2014-01-12
| | | | addition to user config.
* Partially fix #1224.Gravatar Konrad Borowski2014-01-10
| | | | | It would be nice if this would work without this hack, but until then, this has to work. Requires you to reinstall the prompt using fish configuration system.
* Add Alt+. as a default binding for history-token-search-backwardGravatar David Adam2014-01-08
| | | | Closes #89.
* Merge branch 'fish_config_angular'Gravatar ridiculousfish2014-01-03
|\
* | __fish_complete_svn: remove GNU extension optionsGravatar David Adam2013-12-30
| | | | | | | | | | | | | | | | | | Continuation of https://github.com/fish-shell/fish-shell/pull/1195/. Removes use of --delimiter and --fields with cut(1) as these are GNU extensions. Note that a number of completions use these options, but as they are only for GNU/Linux-specific tools have remained unmodified.
* | Update adb.fishGravatar maxried2013-12-28
| | | | | | Added semi-documented but often used adb subcommand.
* | Math: disable bc multi-line output.Gravatar Derek Li2013-12-26
| |
* | adding elixir, iex, mix completionsGravatar Andreas Eger2013-12-24
| |
* | Non standard cut optionsGravatar Javier Gonel2013-12-18
| | | | | | Some cut versions don't have `--delimiter` or `--fields` but use the standard options `-d` and `-f`
* | Revert "Ensure that UTF-8 works if LANG contains it."Gravatar Konrad Borowski2013-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | This was a really stupid change that I should have tested more before pushing. It broke any non-interactive usage, such as SSH, fish config, or parsing the script output, as config.fish is loaded for everything. There are no issues with different terminal emulators, so this change will be pushed in the future, but only running in interactive mode. I apologize for any issues caused by this commit. This reverts commit d61adfbc532e856242730e198e492a2845754a91.
* | Ensure that UTF-8 works if LANG contains it.Gravatar Konrad Borowski2013-12-15
| | | | | | | | | | | | | | | | | | | | Some people like to have their terminals claim UTF-8 support when their terminals actually are set to another encoding. As nobody appears to understand this, I have made a change to automatically fix the encoding problems if possible. This uses ISO 2022 sequences in order to dynamically change the encoding. Fixes #692. Fixes #895. Fixes possible future issues about this.
* | Prepend user paths even if they already exist in system pathGravatar Jay Weisskopf2013-12-10
| | | | | | Fixes #1099
| * Minor fixes in the colors tabGravatar Siteshwar Vashisht2013-12-07
| | | | | | | | | | | | | | * Show color scheme title in preview box * Show information about setting terminal background color on Apply button mouse hover * Added text_color_for_color method in colors controller scope
| * Merge branch 'master' into fish_config_angularGravatar Siteshwar Vashisht2013-12-07
| |\ | |/ |/|
* | Added completion for Android adb command.Gravatar Tom Sutcliffe2013-12-05
| |
* | __fish_git_prompt: initialise colors earlyGravatar David Adam2013-12-02
| | | | | | | | | | | | | | Otherwise __fish_git_prompt_informative_status tries to expand an unset variable. Closes #1157.
* | Fix s/$remote// mistake.Gravatar Konrad Borowski2013-11-29
| | | | | | $remote could have contained /.
* | add port informationGravatar Shane Xu2013-11-27
| |
* | Fix bold in informative git prompt.Gravatar Konrad Borowski2013-11-27
| | | | | | | | | | Currently this fix is useless, as web config cannot apply variables, but in future, it could be more useful.
* | Add eselect, rc-update and rc-service completions. (These are utilities used ↵Gravatar Jelte Fennema2013-11-27
| | | | | | | | | | | | | | | | by Gentoo Linux) Disable php completion for the 4th part of the command, since php-eselect is differently designed and causes errors Closes #1131.
* | Use sed instead of sh for Informative Git Prompt.Gravatar Konrad Borowski2013-11-27
| | | | | | | | | | Informative Git Prompt assumes that sh is bash compatible, but that's not the case for FreeBSD. Fixes #1140.
* | __fish_complete_man: Use awk to parse output of aproposGravatar David Adam2013-11-27
| | | | | | | | | | | | | | Closes #960. Uses pattern matching rather than OS detection. Works with BSD awk, GNU awk and Solaris' nawk.
* | Update brew completion with new optionsGravatar Misty De Meo2013-11-26
| |
* | Do not open CLI browsers when using fish_config.Gravatar d10n2013-11-26
| | | | | | | | | | | | | | | | | | | | | | From the Python webbrowser documentation: "If text-mode browsers are used, the calling process will block until the user exits the browser." Running fish_config on an ssh server with no GUI browser will open a CLI browser which blocks and stops the server from handling requests. Using multiprocess to run the server in the background lets CLI browsers access the page, but the page is unusable. For now, disable CLI browsers and recommend opening the page in a graphical browser. In the future, maybe write a CLI utility to change prompts and delete history items.
* | Fix indentation in __fish_complete_cdGravatar ridiculousfish2013-11-26
| |
* | cd completion: handle not accessible directoriesGravatar Jörg Thalheim2013-11-26
| |
* | Use fish from $__fish_bin_dir while calling fish_update_completions at startupGravatar Siteshwar Vashisht2013-11-17
| |
* | Do not show files in modprobe completionsGravatar Siteshwar Vashisht2013-11-17
| |
* | Fix modprobe completion for newer modprobe versionsGravatar Thierry Goettelmann2013-11-16
| |
* | add bindings for PuTTY's I-can't-believe-it's-xterm keyboardGravatar David Adam2013-11-13
| | | | | | | | (see #170)
* | Don't show warning while generating man page completions on startupGravatar Siteshwar Vashisht2013-11-12
| |
* | Autogenerate manpage completions in background if they do not existGravatar Siteshwar Vashisht2013-11-12
| |
| * Do not highlight selected promptGravatar Siteshwar Vashisht2013-11-09
| |
| * Set current prompt as selected prompt after prompt changeGravatar Siteshwar Vashisht2013-11-09
| |
| * Changed UI of prompt tabGravatar Siteshwar Vashisht2013-11-09
| | | | | | | | | | Show function definition and use button under prompt demo when prompt demo is selected
| * Updated fish_config prompt tabGravatar Siteshwar Vashisht2013-11-09
| |
* | Use basename for man argumentGravatar Konrad Borowski2013-11-09
| | | | | | | | This protects from providing paths to man, like `./a.out`.
* | Allow reading manpages by using F1.Gravatar Konrad Borowski2013-11-09
| |
* | Prefer standard library lzma module if availableGravatar Marc Joliet2013-11-09
| | | | | | | | | | | | Prefer the standard library lzma module if available. This change prevents using the backports-lzma when it is installed for a version of Python that already has the lzma module in its standard library.
* | Implement file autocompletion for git add and git checkout.Gravatar Konrad Borowski2013-10-31
| | | | | | | | Fixes bpinto/oh-my-fish#59.
* | Make type -a print all executables in PATHGravatar Asger Hautop Drewsen2013-10-29
| |
* | add completions for source and document the move away from '.'Gravatar David Adam2013-10-28
| | | | | | | | Closes: #310
| * Show actual binding if user clicks a binding itemGravatar Siteshwar Vashisht2013-10-27
| |
* | Disallow package names with dots.Gravatar Konrad Borowski2013-10-25
| | | | | | | | | | They cannot be used as arguments (Perl thinks it's version check, but version checks are pointless for oneliners), and Debian puts path containing version depending directories (like 5.14.2) in Perl path.
| * Updated handling escape character in binding parserGravatar Siteshwar Vashisht2013-10-25
| |
| * Add a one second delay between query input and filtering historyGravatar Siteshwar Vashisht2013-10-22
| |
| * Added code for parsing end keyGravatar Siteshwar Vashisht2013-10-22
| |