aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Don't do fuzzy matching for file completions for arguments beginningGravatar ridiculousfish2013-09-15
| | | | with a dash, as suggested in #568
* Add newline before listing current token.Gravatar nulltrek2013-09-13
|
* fix typo introduced in b56542a9fGravatar David Adam (zanchey)2013-09-13
| | | | | | | Thanks to @siteshwar for spotting. https://github.com/fish-shell/fish-shell/commit/b56542a9f195358b1ac33716bde0d731b8e70871#commitcomment-4083982 https://github.com/fish-shell/fish-shell/commit/b56542a9f195358b1ac33716bde0d731b8e70871#commitcomment-4083982
* document new bindings introduced in cd1c2f74d3bcGravatar David Adam (zanchey)2013-09-13
|
* tarball generation: include config.h.in, set mode and ownershipGravatar David Adam (zanchey)2013-09-13
| | | | | | | | | | | | Include config.h.in as well as configure. Also sets correct owner, group and mode for all appended files. Update the mtime of all appended files so that configure and config.h.in are always newer than configure.ac. (Fixes many problems introduced by 5023ade7, and makes the commit message actually true.)
* test documentation: update wording, generate test manual page (closes #734)Gravatar David Adam (zanchey)2013-09-13
|
* Fix some typos.Gravatar nulltrek2013-09-12
|
* Rename internal functions for consistency.Gravatar nulltrek2013-09-12
|
* Fix a comment typoGravatar ridiculousfish2013-09-12
|
* Don't do completions or autosuggestions for commands with wildcards.Gravatar ridiculousfish2013-09-11
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/785
* Improve error messages for double square brackets -Gravatar ridiculousfish2013-09-11
| | | | https://github.com/fish-shell/fish-shell/issues/875
* Fix certain wildcard tab completions -Gravatar ridiculousfish2013-09-11
| | | | https://github.com/fish-shell/fish-shell/issues/929
* Fix for infinite loop in cycle_competions, and potential issue inGravatar ridiculousfish2013-09-10
| | | | fish_pager when given an empty completion list
* Rework some of the new case-modifying commands to share more code, andGravatar ridiculousfish2013-09-10
| | | | also to update the autosuggestion and syntax highlighting
* add support for downcase-word, upcase-word and capitalise-wordGravatar Christian Rishøj2013-09-09
|
* Remove useless semicolon in webconfig.pyGravatar Konrad Borowski2013-09-08
|
* When exiting, only warn about _stopped_ background jobs (fix #111)Gravatar Leonardo Boiko2013-09-08
|
* tarball generation should build configure scriptGravatar David Adam (zanchey)2013-09-06
| | | | | | For the next release, this means that `autoconf` is no longer required if building from the tarball. The website and documentation should be updated accordingly at that time.
* document and enforce Autoconf 2.60 or greaterGravatar David Adam (zanchey)2013-09-06
|
* Remove duplicates from history in fish_configGravatar ridiculousfish2013-09-05
| | | | https://github.com/fish-shell/fish-shell/issues/900
* Make __fish_print_mounted work better on OS XGravatar ridiculousfish2013-09-05
|
* OS X Mavericks keybinding fixGravatar ridiculousfish2013-09-05
|
* Fix VTE version testGravatar Konrad Borowski2013-09-04
|
* Recommend eval when using variable as command.Gravatar Konrad Borowski2013-09-04
|
* Notify vte-based terminals of $PWD change (#906)Gravatar Tim Cuthbertson2013-09-04
|
* add __fish_urlencode function which URL-escapes stdinGravatar Tim Cuthbertson2013-09-04
|
* git version generation fixesGravatar David Adam (zanchey)2013-09-02
| | | | | - Remove the `version` file created for the tarball after the tarball is finished - Use the builtin type instead of which.
* Fix useradd completion syntaxGravatar ridiculousfish2013-09-02
| | | | (https://github.com/fish-shell/fish-shell/issues/863)
* docs: don't remove/rebuild share/man if we don't have doxygenGravatar David Adam (zanchey)2013-09-02
|
* completion for vim-addonsGravatar Adrien Grellier2013-09-01
|
* Fix more indentation in fish_default_key_bindings.fishGravatar ridiculousfish2013-08-31
|
* Fix indentationGravatar ridiculousfish2013-08-31
|
* Try to improve the error message printed when libcurses is not foundGravatar ridiculousfish2013-08-31
|
* Adjust prefix completions to sort alphabetically instead of by length.Gravatar ridiculousfish2013-08-31
| | | | | Other completions are still sorted by length. https://github.com/fish-shell/fish-shell/issues/923
* Support iTerm2 forward/backward word escapesGravatar ridiculousfish2013-08-31
| | | | (https://github.com/fish-shell/fish-shell/issues/920)
* Replace IRC link with WebChat linkGravatar Konrad Borowski2013-08-30
| | | It seems GitHub doesn't allow irc:// protocol, so replace it with WebChat link.
* Put an IRC link to README.Gravatar Konrad Borowski2013-08-30
|
* Initialize cycle_cursor_pos.Gravatar Konrad Borowski2013-08-29
| | | | This removes the warning from compiler.
* libncursesw5-dev is not needed on DebianGravatar Konrad Borowski2013-08-28
| | | I just checked on new Debian installation, and only libncurses5-dev appears to be needed.
* Add a fancy new paths_are_equivalent function to test for equivalentGravatar ridiculousfish2013-08-27
| | | | paths instead of merely equal ones
* Stop insisting on trying to add /usr/bin and /bin to $PATH.Gravatar ridiculousfish2013-08-27
| | | | https://github.com/fish-shell/fish-shell/pull/854
* Fix bad error message for certain options.Gravatar ridiculousfish2013-08-26
| | | | https://github.com/fish-shell/fish-shell/issues/979
* Fix #976. Now prompt tries to use standard git command.Gravatar Konrad Borowski2013-08-26
|
* Clean up some comments and make a function staticGravatar ridiculousfish2013-08-26
|
* improve comments and extract a common functionGravatar Tony Wang2013-08-25
|
* fixed fish-shell/fish-shell#944Gravatar Tony Wang2013-08-25
| | | | | | | | | | | | When the completion list includes the exact typed string with other candidates, i.e. completion_t.match.type == fuzzy_match_exact, the other candidates will be removed from the list, as they are not the "best type". This is inconvenient for the user who wants to type and complete commands in the other candidates. The commit is to make the best_type to fuzzy_match_prefix as highest priority, also, when comparing to best_type, the same or higher priority completions can both match.
* use wstat in test command to follow symbolic linkGravatar Tony Wang2013-08-25
|
* add -O and -G to test commandGravatar Tony Wang2013-08-25
| | | | they are available on Linux and OS X, and now ported to fish
* Fix to respect the order of paths in /etc/paths (oops)Gravatar ridiculousfish2013-08-25
|
* Rearrange the PATH to respect the order defined in /etc/paths (#927) andGravatar ridiculousfish2013-08-25
| | | | to prepend it to $PATH instead of appending it (#950)