aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Replace autosuggestions "completions to load" mechanism with moderatelyGravatar ridiculousfish2013-11-29
| | | | less hackish and far simpler "perform on main thread" mechanism
* Allow autosuggestions to do job expansion. FixesGravatar ridiculousfish2013-11-29
| | | | https://github.com/fish-shell/fish-shell/issues/1152
* Fix s/$remote// mistake.Gravatar Konrad Borowski2013-11-29
| | | $remote could have contained /.
* Implemented iothread_perform_on_main() to support background threadsGravatar ridiculousfish2013-11-27
| | | | scheduling work on main thread
* Disallow Unicode conversion specifications.Gravatar Konrad Borowski2013-11-27
| | | | | | This stops fish from accessing the `bool ok[UCHAR_MAX + 1]` table beyond allocated space potentially accessing memory that doesn't belong to fish, and crashing.
* Fix compilation failures under Intel C compiler.Gravatar Konrad Borowski2013-11-27
| | | | | | It appears that Intel C compiler doesn't recognize unsigned wchar_t, however it doesn't appear to be important (the conversion function is unused, and in other cases it doesn't appear to be needed).
* 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.
* Fix for process expansion off the main thread in syntax highlightingGravatar ridiculousfish2013-11-26
| | | | (#1143)
* Fix for compile error identified inGravatar ridiculousfish2013-11-26
| | | | https://github.com/fish-shell/fish-shell/issues/1142
* Add missing const cast for setup_termGravatar ridiculousfish2013-11-26
| | | | https://github.com/fish-shell/fish-shell/issues/1142
* Fix for annoying error message when converting out of range escapeGravatar ridiculousfish2013-11-26
| | | | https://github.com/fish-shell/fish-shell/issues/1107
* fall back to ANSI terminal type if setupterm failsGravatar David Adam2013-11-26
| | | | | | | | | | | | | | | Closes: https://github.com/fish-shell/fish-shell/issues/1060 'ansi' should always be present (tested on Solaris, Linux, FreeBSD, Darwin). Also overrides TERM so that other programs behave consistently e.g. fish_pager. The error message makes no specific mention of terminfo or termcap as these vary across operating systems. (r+ @ridiculousfish with thanks)
* more detailed debugging when terminal type cannot be foundGravatar David Adam2013-11-26
| | | | Ref: #1060
* Fix support for backslash-newline in double quotes in unescape functions. ↵Gravatar ridiculousfish2013-11-26
| | | | | | Makes tests pass again.
* Fix wide character wrapping.Gravatar d10n2013-11-26
| | | | | | | | The intention of the block removed appears to be to indent wrapped lines to the column the line started at. What actually happens is that all wrapped lines wrap to column 0. After adding the sticky short prompt feature, the block removed caused a bug with wrapping wide characters in addition to not appearing to change anything else. Wide characters would change between wrapping to column 0 and the column the command started at, depending on what column the wide character was at before wrapping. I am keeping the existing behavior rather than restoring the block's original intention. If the original intention should be restored, it should be on a different branch.
* On short prompts, commands wider than the terminal do not reposition to ↵Gravatar d10n2013-11-26
| | | | start on their own lines.
* 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
|
* Fix %lu for size_t in fish_tests.cppGravatar Konrad Borowski2013-11-25
|
* Fix io_buffer_t::print to take unsigned long argument.Gravatar Konrad Borowski2013-11-25
|
* Ensure the loop in offset_of_next_item_fish_2_0 is executed.Gravatar Konrad Borowski2013-11-25
| | | | This ensures that timestamp will be initialized.
* Cast size_t to unsigned long.Gravatar Konrad Borowski2013-11-25
| | | | | | printf expects unsigned long (%lu) argument, however, size_t doesn't have to be declared as such. As %zu is C99 (but not C++), it shouldn't be used directly. Instead, I have to cast value to the correct type.
* Remove old unescape() functionGravatar ridiculousfish2013-11-24
|
* Large cleanup and refactoring of unescape() function.Gravatar ridiculousfish2013-11-24
|
* Cast timestamp before using it for formatted string.Gravatar Konrad Borowski2013-11-19
| | | | | time_t doesn't necessarily have to be a long number. In fact, manpage for types.h mentions it can be a double value.
* 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
|
* Fixes misleading "connect: Connection failed" message on start upGravatar bot472013-11-14
| | | When launching the first instance of fish and fishd is not launched already, this should not be considered an error as long as it can be launched. So ignore the first failure of connect(), as the calling function get_socket() will try again. May need a bit of cleanup.
* 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
|
* document new F1 bindingGravatar David Adam2013-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.
* configure/Makefile: respect $LIBS, remove some egregarious liesGravatar David Adam2013-11-09
| | | | | | | - expunge LIBS_COMMON, it doesn't get used anywhere - don't reset LIBS to empty - move the gettext test as every binary depends on it - only include one set of libraries
* improve diagnostics for socket connections to fishdGravatar David Adam2013-11-05
|
* Integrated new German translation provided by Benjamin WeisGravatar ridiculousfish2013-11-03
|
* s/Procces/Process/. Fixes #1082.Gravatar Konrad Borowski2013-10-31
|
* Implement file autocompletion for git add and git checkout.Gravatar Konrad Borowski2013-10-31
| | | | Fixes bpinto/oh-my-fish#59.
* Fix broken links in tutorialGravatar Antoine Gourlay2013-10-31
|
* clobber the prompt when it exceeds the screen width, not when it equals itGravatar devlin zed2013-10-29
| | | | Closes #1069
* Make type -a print all executables in PATHGravatar Asger Hautop Drewsen2013-10-29
|