aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
Commit message (Collapse)AuthorAge
* 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.
* 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.
* 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.
* Merge pull request #1015 from marcecj/add_bz2_lzma_xz_supportGravatar Konrad Borowski2013-10-18
|\ | | | | Support bzip2 and lzma/xz compressed man pages
| * Change the way xz/lzma man pages are detectedGravatar Marc Joliet2013-10-17
| | | | | | | | | | This avoids the use of the global and puts the diagnostic message in a self-contained location.
| * Only print an error when an lzma/xz manpage occursGravatar Marc Joliet2013-09-25
| | | | | | | | | | Only print an error when an lzma/xz compressed man page occurs. Also, use add_diagnostic instead of print.
* | Fix one element tuple to be actually tuple.Gravatar Konrad Borowski2013-09-25
| | | | | | | | | | While in this case it doesn't mean much (neither `z` or `-` would be passed to options parser), it makes things possibly less buggy.
| * Skip lzma/xz manpages if lzma module not availableGravatar Marc Joliet2013-09-25
| | | | | | | | | | Skip man pages compressed with lzma/xz if the lzma module is not available; also print a corresponding diagnostic message.
| * Only try "lzma" module on ImportErrorGravatar Marc Joliet2013-09-25
| |
| * Change an "if" to more appropriate "elif"Gravatar Marc Joliet2013-09-25
| | | | | | | | I overlooked an "if" that should have been an "elif". Oops.
| * Support bzip2 and lzma/xz compressed man pagesGravatar Marc Joliet2013-09-24
|/ | | | | | | Add support for bzip2 and lzma/xz compressed man pages. Support for bzip2 is part of the Python standard library (at least for 2.7 and >=3.2), while lzma/xz is only in Python >=3.3; however, there is a backports module for Python 2.7 and 3.2.
* Small fix for fish_update_completions (amended)Gravatar bathtub2013-09-19
| | | | | Amended from https://github.com/fish-shell/fish-shell/pull/1003. Fix a Unicode parsing error; search man6.
* Remove useless semicolon in webconfig.pyGravatar Konrad Borowski2013-09-08
|
* Remove useless debugging codeGravatar Konrad Borowski2013-07-27
|
* Merge branch 'informative_git' of git://github.com/mariuszs/fish-shell into ↵Gravatar ridiculousfish2013-07-11
|\ | | | | | | mariuszs-informative_git
* | Converted tabs to spaces in webconfig scriptGravatar Siteshwar Vashisht2013-07-06
| |
* | Cleaned up commented lines and updated method names in ↵Gravatar Siteshwar Vashisht2013-07-06
| | | | | | | | create_manpage_completions script
| * Renaming, cleanupGravatar Mariusz Smykuła2013-06-18
| |
| * Support for defining color with bold/brighter color setGravatar Mariusz Smykuła2013-06-18
| |
| * Use tabs, sample promptGravatar Mariusz Smykuła2013-06-18
|/
* Parse man8 pages with fish_update_completionsGravatar Dag Odenhall2013-05-25
| | | | Closes #727
* Slightly modified this theme to match robbyrusselGravatar Marc Qualie2013-05-24
| | | | I recently switch from ZSH to Fish shell and noticed that this theme is slightly different to the one provided by ZSH. I edited my own using funced but thought it might be useful for other people who are used to the ZSH interface.
* Ugly hack to move functions in sample prompts inside fish_prompt to address #736Gravatar ridiculousfish2013-05-13
|
* Attempt again to fix UnicodeDecodeError (issue #658)Gravatar ridiculousfish2013-05-12
|
* Teach fish_config how to find fish from __fish_bin_dirGravatar ridiculousfish2013-04-15
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/621
* Try to fix UnicodeDecodeError in create_manpage_completions.pyGravatar ridiculousfish2013-04-15
| | | | https://github.com/fish-shell/fish-shell/issues/658
* Fix to make create_manpage_completions work with Python 3Gravatar ridiculousfish2013-04-14
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/658 ?
* Move autogenerated completions to ~/.config/fish/generated_completions/Gravatar ridiculousfish2013-02-17
| | | | https://github.com/fish-shell/fish-shell/issues/576
* Clean up man page parser output a bitGravatar ridiculousfish2013-01-27
|
* FormattingGravatar ridiculousfish2013-01-16
|
* Ajax fix for Firefox, it isn't XML.Gravatar ciembor2013-01-16
|
* Make create_manpage_completions not generate empty filesGravatar ridiculousfish2013-01-08
| | | | https://github.com/fish-shell/fish-shell/issues/506
* Make fish_config compatible with Python 2.5Gravatar Anders Bergh2012-12-12
| | | | | | Try to import parse_qs from the cgi module, and simplejson instead of json. Use old string formatting. str.format() was backported from Python 3 to 2.6 and isn't available in 2.5.
* Try to fix create_manpage_completions script for system where ↵Gravatar Jean-Daniel Dupas2012-12-02
| | | | sysgetdefaultencoding() returns ASCII.
* Improvements to man page parser, and to description truncationGravatar ridiculousfish2012-11-22
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/98
* Remove trailing whitespaces and change tabs to spacesGravatar Łukasz Niemier2012-11-18
|
* Removed python scripts to import bash settingsGravatar Siteshwar Vashisht2012-10-27
|
* Use echo -n instead of printfGravatar Terje Larsen2012-10-20
| | | | - Remove useless comment, because multi-line prompt works good now.
* Handle some more escapes in de-groffing man pagesGravatar ridiculousfish2012-10-17
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/10
* Added terlar's prompt, and robbyrussell which was inadvertently omittedGravatar ridiculousfish2012-10-15
| | | | https://github.com/fish-shell/fish-shell/issues/329
* Fixed web_config prompt to work with Python 2.6.1Gravatar Peter Ammon2012-09-10
|
* Fix to make prompt chooser work in Python3Gravatar ridiculousfish2012-09-06
|
* Improve python3 compatibility in webconfig.pyGravatar ridiculousfish2012-09-06
|
* Renamed hyperminamlist promptGravatar ridiculousfish2012-09-06
|
* Allow setting the prompt from web_configGravatar ridiculousfish2012-09-06
|
* Merge branch 'webserver' of git://github.com/simukis/fish-shell into ↵Gravatar ridiculousfish2012-08-20
|\ | | | | | | | | | | | | simukis-webserver Conflicts: share/tools/web_config/webconfig.py
* | Make history deletion from web config work properly with Unicode under both ↵Gravatar ridiculousfish2012-08-20
| | | | | | | | | | | | | | Python2 and Python3 Make the filter search field hide properly in tabs where it's non-functional Fixes https://github.com/fish-shell/fish-shell/issues/265
| * Wipe unnecessary `as` statementGravatar Simonas Kazlauskas2012-08-19
| |
| * Decode data in python3 – Fixes #265.Gravatar Simonas Kazlauskas2012-08-19
| | | | | | | | | | | | | | | | | | | | | | In both in python2 and python3 parse_qs expects str object. In python2 it worked ok, because self.rfile was open in binary mode and str in python2 is actually a string of bytes. However in python3 str is actually string of unicode literals, not bytes and file was still open in binary mode. Thus, deleting any file with non-ascii byte inside filename failed in python3. Also, cgi.parse_qs is deprecated and shouldn't be used.
| * Remove trailing spaces and replace tabs with spacesGravatar Simonas Kazlauskas2012-08-19
|/