aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
Commit message (Collapse)AuthorAge
* Use local scope for variables in Mercurial completion functions.Gravatar Daniel Matz2014-03-31
|
* Improve Mercurial command completion.Gravatar Daniel Matz2014-03-31
| | | | | Rewrote the completion file by hand. Added completion of files, bookmarks, revision labels, etc.
* fish_config: Listen on both IPv6 and IPv4.Gravatar Anders Bergh2014-03-31
| | | | | A subclass of TCPServer was created to deny any non-local connections and to listen using an IPv6 socket.
* Fix non-verbose, non-informative __fish_git_promptGravatar Kevin Ballard2014-03-31
| | | | | | | | At some point the non-verbose, non-informative variant of the prompt (e.g. the variant that looks like the bash prompt) was modified to try and show the behind/ahead counts the same way the informative prompt does. Besides being wrong, it also didn't work because behind/ahead weren't defined.
* add pacsrv completionGravatar Lukas Stabe2014-03-31
|
* Merge branch 'master' of github.com:fish-shell/fish-shellGravatar ridiculousfish2014-03-30
|\
* \ Merge branch 'master' into 1218_rebaseGravatar ridiculousfish2014-03-29
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: builtin.cpp builtin_commandline.cpp highlight.cpp input.cpp input.h reader.cpp screen.cpp screen.h
| | * Fixed appearance of ssh hostnames with [] in themGravatar Knut Ahlers2014-03-29
| |/ | | | | | | refs https://github.com/fish-shell/fish-shell/issues/1355
| * Force at least one line of output for `set_color`.Gravatar Konrad Borowski2014-03-03
| | | | | | This should fix #1323.
| * Revert "Merge pull request #1317 from pullreq/cpp"Gravatar ridiculousfish2014-02-28
| | | | | | | | | | | | | | This reverts commit 74135c0600d5dcc40d396d0e7293c17b8d4bdaa7, reversing changes made to 6d749789ce240a3e6f1447777db63fd8e7525560. See discussion in #1317
| * Fixes .c -> .cpp in comments. For doxygen.Gravatar Geoff Nixon2014-02-27
| |
| * Use 127.0.0.1 for fish config.Gravatar Konrad Borowski2014-02-27
| | | | | | | | | | | | | | | | Before this change, fish config used 0 as its address. However, this isn't a good idea from security point of view, as web service can be accessed from everywhere, and do anything on the account it was ran on. This also deals with firewalls which block the access to 0 even from the host machine itself. It possibly might fix #673, but I'm not sure.
| * Rework color editing in fish_config. Bury customization mode a bit:Gravatar ridiculousfish2014-02-24
| | | | | | | | | | initially the user only sees the various themes, and has to activate customization mode to change colors. Tweak the appearance as well.
| * Make fish install a command_not_found handler in non-interactive uses.Gravatar ridiculousfish2014-02-20
| | | | | | | | | | | | | | | | | | | | | | Previously, fish's command_not_found handler would be installed in __fish_config_interactive. Errors that occured early in startup (e.g. in config.fish) or in non-interactive mode would therefore not be reported. With this change, fish now exposes its default cnf handler as __fish_default_command_not_found_handler . config.fish then installs a cnfh that invokes the default. When fish goes interactive, the initial cnfh is overwritten with a fancier one, that may in turn fall back to invoking the default.
| * Add completions for git stash sub-commandsGravatar Mandeep Sandhu2014-02-16
| | | | | | | | | | | | Closes #1102. Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
| * Caching for pacman packages.Gravatar Eric Mrak2014-02-16
| |
| * adding completion for aura. adding pacman integration for __fish_print_packagesGravatar Eric Mrak2014-02-16
| |
| * 'seq' should return 1, not exit 1, on bad arglistGravatar waterhouse2014-02-16
| |
| * Fix for Python out-of-range exception when accessing Bindings tabGravatar ridiculousfish2014-02-09
| |
| * math.fish: exit if no output (e.g. from syntax error)Gravatar glennj2014-02-05
| | | | | | | | Closes #1175
| * Redirect stderr of initial call to __fish_reload_key_bindings. Fixes ##1155Gravatar ridiculousfish2014-02-03
| |
| * Squashed commit of the following:Gravatar David Adam2014-02-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit d81ae2665fb7ff5123d8472e1d40d7d57fb4b291 Author: Max Gonzih <gonzih@gmail.com> Date: Sun Feb 2 16:22:18 2014 +0300 Check for command-not-found command on suse commit 004b794c82d79bc9463cdb52784b9b5ea49f1c76 Author: Max Gonzih <gonzih@gmail.com> Date: Sun Feb 2 14:04:41 2014 +0300 Fix cnf handler for Suse and Fedora fixes #1208
| * Fix for opening bindings tab as initial tabGravatar Siteshwar Vashisht2014-01-30
| | | | | | | | 'fish_config bindings' command should open bindings tab as initially active tab
| * Support for escaped colons in makefile targets in __fish_print_make_targets, ↵Gravatar ridiculousfish2014-01-29
| | | | | | | | as part of #1259
| * sshfs completions: use all directories as mount pointsGravatar David Adam2014-01-29
| | | | | | | | Closes #1268.
| * __fish_print_packages: correct syntax for yum, improve yum/rpm pipelinesGravatar David Adam2014-01-29
| | | | | | | | | | | | | | Closes #1269 (output to cache file). Reworks the editing pipeline for both yum and rpm completions down to a single sed command.
| * Enhance/fix `isatty` using `command test`.Gravatar Geoff Nixon2014-01-28
| | | | | | | | | | | | | | | | | | | | | | | | Presently, `isatty` only works on a handful of keywords. Here it is rewritten to be able to take any path, device or fd number as an argument, and eliminates errors printed to stdout. Per discussion in #1228, using `builtin test -c` within a pipe to test special file descriptors is not viable, so this implementation specifcially uses `command test`. Additionally, a note has been added to the documentation of `test` regarding this potential aberration from the expected output of the test utility under the 'Standards' section.
| * Support escape or up-arrow to cancel the completion search field.Gravatar ridiculousfish2014-01-27
| |
| * Increased support for completion search field. Use btab (shift-tab) toGravatar ridiculousfish2014-01-27
| | | | | | | | complete-and-search.
| * Teach down-or-search how to use down-arrow to begin pager navigationGravatar ridiculousfish2014-01-25
| |
| * Fix for issue where wc on OS X would produce leading spaces, causingGravatar ridiculousfish2014-01-25
| | | | | | | | down-or-search to fail to match the case statement and therefore do the wrong thing.
* | Add 'and' input function; fixes a bug with t,TGravatar Julian Aron Prenner2014-01-23
| | | | | | | | | | | | 'and' will prevent later input functions from being executed if the previous one did not succeed (e.g. a jump to a char not on the command line)
* | Merge branch 'bind_mode' of github.com:furunkel/fish-shell into bind_modeGravatar Julian Aron Prenner2014-01-22
|\ \
* | | Experimental support for f,F,t,T vi commands.Gravatar Julian Aron Prenner2014-01-22
| | | | | | | | | | | | Input functions can now have arguments
* | | Change mode colors in promptGravatar Julian Aron Prenner2014-01-22
| | |
| * | Add tmux supportGravatar Maxim Gonchar2014-01-20
| | |
| * | Retab againGravatar Maxim Gonchar2014-01-20
| | | | | | | | | | | | default_keybindings are left with tabs as it was in the beginning
| * | RetabGravatar Maxim Gonchar2014-01-20
| | |
| * | More clear way of setting cursor shapeGravatar Maxim Gonchar2014-01-20
|/ /
* | Make Ctrl-x autocomplete suggestions; cosmeticsGravatar Julian Aron Prenner2014-01-20
| |
* | Add cursor shape handlerGravatar Maxim Gonchar2014-01-20
| |
* | Fix e and E in visual vi modeGravatar Max Gonzih2014-01-19
| |
* | Add x binding to delete whole line in visual modeGravatar Max Gonzih2014-01-19
| |
* | Add x binding to delete selection in visual vi modeGravatar Max Gonzih2014-01-19
| |
* | Set $fish_bind_mode to default on fish startup; set $fish_key_bindingsGravatar Julian Aron Prenner2014-01-19
| | | | | | | | when sourcing fish_vi_mode.fish
| * Further work on keyboard navigating the completion listGravatar ridiculousfish2014-01-18
| |
* | Add kill-selection function and visual binds for 'y' and 'd'Gravatar Julian Aron Prenner2014-01-18
| |
* | Fix a bug, commandline -s works now as expected. Add "*y binding inGravatar Julian Aron Prenner2014-01-17
| | | | | | | | visual mode
* | Merge pull request #4 from maxfl/bind_modeGravatar furunkel2014-01-17
|\ \ | | | | | | Minor bind fixes
| * | Minor bind fixesGravatar Maxim Gonchar2014-01-17
| | | | | | | | | | | | | | | | | | | | | Comment out 'o' binding Add '['/']' bindings to navigate current token history Fix 'P' to paste indeed Add "*P/"*p to insert current selection clipboard using xsel