aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
Commit message (Collapse)AuthorAge
* Lossless recompress of images with pngcrush+zopfliGravatar Aaron Gyes2016-06-18
| | | | And tweak RTF.
* Fix utf-8 decoding error in file_is_overwritable of ↵Gravatar Andreas Wagner2016-05-29
| | | | create_manpage_completions.py
* Use fonts found on terminals for the web config.Gravatar Aaron Gyes2016-05-18
| | | | | | | | | Instead of just using Courier New across the board, have the browser try several likely available fonts before defaulting to the system's "monospace". Thanks @MarkGriffiths Fixes #2924
* fix typo in webconfig.py commentGravatar CoolOppo2016-05-11
|
* docs: fix location of generated_completions (#3010)Gravatar Vladimír Čunát2016-05-08
|
* Stringify many completions and functions, with --invert stringification.Gravatar Aaron Gyes2016-04-08
| | | | | | | | I believe apm must have been buggy - example output that I found online showed `tr` was mangling paths with spaces in it. Should be fixed. Also, use dscl on OS X in __fish_complete_users.fish like __fish_print_users.fish already does.
* Fix acpi check in nim promptGravatar Fabian Homborg2016-03-20
|
* robbyrussell prompt: Check for git/hg existenceGravatar Fabian Homborg2016-03-20
| | | | Fixes #2826
* Remove "w/o Background Color" text from Set Theme button in fish_configGravatar ridiculousfish2016-03-02
| | | | | This is important information but the Set button is the wrong place to put it.
* Tweak language and styling of background color text in fish_configGravatar ridiculousfish2016-01-14
|
* respond to feedbackGravatar Kurtis Rader2016-01-14
|
* improve set_color and theme color documentationGravatar Kurtis Rader2016-01-14
| | | | | | | | | This is meant to make it clear that fish cannot control the terminal window background color. It also augments the set_color documentation to describe how it decides which color the terminal can display. Resolves #2421. Resolves #2184.
* Add new named colors to webconfigGravatar Fabian Homborg2016-01-08
| | | | | | | The 'br' variants were added in 0a0acc8, but not to named_colors in webconfig.py. Fix this oversight.
* Make informative_git prompt use vcs_prompt -> Rename it to "Informative Vcs"Gravatar Fabian Homborg2015-12-16
|
* Switch classic + git prompt to all vcsen -> Rename it to Classic + VcsGravatar Fabian Homborg2015-12-16
| | | | Keep the variable names for now.
* Make lonetwin prompt use __fish_vcs_promptGravatar Fabian Homborg2015-12-16
|
* Use unused cleanup_autogenerated_fileGravatar Alexander Hedges2015-11-08
|
* Remove autogenerated files before generating the new onesGravatar Alexander Hedges2015-11-08
| | | | | | | Currently if there is a conflict with two manpages having the same name, one completion will override the other. But if one can be parsed and the other can't the one with parsed results will always have a higher priority.
* Guard against files that don't end in .[1...9]Gravatar Alexander Hedges2015-11-08
| | | | | | | It seems smart to only let files be parsed that are clearly manpage files. Other files wouldn't be openend by man so I think it is safe to guess that only these files are man pages.
* Ignore references to builtin on the macGravatar Alexander Hedges2015-11-08
| | | | | On my system (OS-X 10.11) references to builtin are denoted by: ".so man1/builtin.1". So you also need to check against that.
* Revert "prompts: more concise way of getting the hostname."Gravatar David Adam2015-10-16
| | | | | | This reverts commit 233c4436943fb56edf6db44b932221107b37fad1. See discussion in https://github.com/fish-shell/fish-shell/pull/2489
* prompts: more concise way of getting the hostname.Gravatar Michael Fogleman2015-10-15
|
* Correct the comment on the default pathGravatar Wonicon2015-09-26
| | | | | According to the newer code below: xdg_data_home = os.getenv('XDG_DATA_HOME', '~/.local/share') the actual default path is ~/.local/share/fish/generated_completions/
* Informative git prompt: Handle root/toor usersGravatar Fabian Homborg2015-09-15
| | | | | | Fixes #961 This should probably be in a helper function
* Webconfig: It's abbr --erase, not abbr --removeGravatar Fabian Homborg2015-09-13
| | | | | This was renamed in c0cf25cf0b28969dd9ef821f7952f42783ed6720 but never in webconfig.
* Webconfig: abbr doesn't support "--"Gravatar Fabian Homborg2015-09-13
| | | | Fixes #2276
* Remove setup outside of fish_prompt from sample promptsGravatar Fabian Homborg2015-08-31
| | | | | | | | | | This doesn't work with fish_config. For terlar and pythonista, remove unnecessary color setting. For informative+git and pythonista, move variable setup into fish_prompt Fixes #1141
* Remove vi mode indicator from classic_git promptGravatar ridiculousfish2015-08-18
| | | | | | It is duplicative of the fish_mode_prompt function Fixes #2228
* Fix sorin prompt, remove fallbackGravatar Fabian Homborg2015-08-16
| | | | Closes #2243
* pngquant delete.png, saving ~1.4 KBGravatar ridiculousfish2015-07-12
|
* Add favicon for web configGravatar Jonathan Chan2015-07-12
|
* :+1: New sample prompt from AcidhubGravatar Fernando Manfredi2015-07-12
| | | | | | | | | | | | | New sample prompt from Acidhub (github.com/acidhub) This prompt show user|path (full), and a small symbol to show last command status. If in a git repository, it's show after the path several symbols to indicate the branch status and the branch name. Very handy to me so far. Signed-off-by: Fernando Manfredi <contact@acidhub.click>
* Correct name and author fields to be lowercase in sorin promptGravatar ridiculousfish2015-06-23
| | | | | fish_config requires that these fields be lowercase, otherwise they won't show up in the prompt list.
* Add sorin themeGravatar Ivan Tham2015-06-23
|
* Tweak and add tests for abbrGravatar ridiculousfish2015-06-14
| | | | | | | | | | | 1. When run with no arguments, make abbr do the equivalent of `abbr --show` 2. Enable "implicit add", e.g. `abbr gco git checkout` 3. Teach `abbr --show` to not use quotes for simple cases 4. Teach abbr to output -- when the abbreviation has leading dashes Add some basic tests to abbr too.
* fish_config to select the proper tab when run with a tab nameGravatar ridiculousfish2015-06-14
| | | | | `fish_config abbr` should show "abbreviations" selected in the tab list.
* Tweak the styling of the abbreviation editorGravatar ridiculousfish2015-06-13
| | | | Removes the big white block of the input fields.
* Use --remove instead of -e when erasing abbreviations from fish_configGravatar ridiculousfish2015-06-13
| | | | Updates fish_config to use the correct argument to abbr
* abbr: rename --remove to --eraseGravatar David Adam2015-05-22
| | | | | | for consistency with other fish commands Closes #2071.
* Make fish_config work correctly when IPv6 is disabled in the kernelGravatar ridiculousfish2015-05-17
| | | | Fixes #1754
* added cursor:pointer to master_element in web_config cssGravatar Brendan Whitfield2015-05-03
|
* Reset the color after printing the CWD in classic+git promptGravatar ridiculousfish2015-04-23
| | | | Fixes #2034
* Use $PWD instead of (pwd) in sample promptGravatar ridiculousfish2015-03-24
| | | | | | This improves the case where the working directory has vanished Fixes #1857
* Add hg branch and status to terlar's promptGravatar LoveIsGrief2015-01-30
|
* web_config: set new prompts via JSON instead of URI-encodedGravatar David Adam2015-01-30
| | | | | Fixes problems with encoding and decoding Unicode from URL-encoded strings, which was impossible to get right in Python 2.
* web_config: respect the client's character set for JSONGravatar David Adam2015-01-30
|
* web_config: fix python2/3 unification for parse_qsGravatar David Adam2015-01-30
|
* web_config: respect linebreaks in prompt demosGravatar David Adam2015-01-29
|
* Update pythonista.fish: make virtualenv aware that prompt is setGravatar volnt2014-12-28
| | | | | | Closes #1823, closes #1795. Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
* Make fish_config handle no LANG variable set.Gravatar Konrad Borowski2014-12-05
| | | | Fixes #1849.