aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | | Dead macro cleanupGravatar ridiculousfish2015-08-10
| | | | | | | | | | | | Enable -Wunused-macros, and remove said unused macros
* | | Use ++iter, not iter++ in input.cppGravatar ridiculousfish2015-08-10
| | |
* | | Correct the caret position for unbalanced square bracketsGravatar ridiculousfish2015-08-10
| | |
* | | Correct the positioning of the error caretGravatar ridiculousfish2015-08-10
| | | | | | | | | | | | | | | | | | When an error occurs midway through a token, like abc(def, make the caret point at the location of the error (i.e. the paren) instead of at the beginning of the token.
* | | Fix wesnoth completionGravatar Fabian Homborg2015-08-10
| | |
* | | Fix source completion by making "..fish" symlink regular fileGravatar Fabian Homborg2015-08-09
| | | | | | | | | | | | Also fixes #2286 by removing the only symlink.
* | | Make expansion test robust against different filesystem ordersGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | Should make the tests pass on Linux
* | | Add wreaddir_for_dirs functionGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | Eliminates some stat calls, speeding up wildcard expansion
* | | Remove a bogus function declarationGravatar ridiculousfish2015-08-08
| | |
| | * Match the whole real home directory in prompt_pwd.Gravatar Jonas Hietala2015-08-08
| | |
* | | Eliminate wildcard_expand functionGravatar ridiculousfish2015-08-08
| | |
* | | Initial implementation of intermediate fuzzy completionGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | e.g. /u/l/b<tab> may be expanded to /usr/local/bin
* | | Experiment to rework wildcard matchingGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | | | | Preparation for zsh-style intermediate component tab completion
* | | Tweak try_add_completion_result logicGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | Preparation for zsh-style intermediate fuzzy matching
* | | Migrate the prepend_token_prefix logic into the expanderGravatar ridiculousfish2015-08-08
| | |
* | | Factor the expander class a bit moreGravatar ridiculousfish2015-08-08
| | |
* | | Move the "wildcard_complete" test into wildcard_test_flags_then_completeGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | Simplifies code yet further
* | | Eliminate the wildcard_expand_internal functionGravatar ridiculousfish2015-08-08
| | |
* | | rename FOR_COMPLETIONS to EXPAND_FOR_COMPLETIONSGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | This is yet clearer
* | | Slight refactoring of expander's return code implementationGravatar ridiculousfish2015-08-08
| | |
* | | Rewrite wildcard_complete_internal to be easier to followGravatar ridiculousfish2015-08-08
| | |
* | | Remove some dead codeGravatar ridiculousfish2015-08-08
| | |
* | | Factor the completion prefix behavior into its own functionGravatar ridiculousfish2015-08-08
| | | | | | | | | | | | | | | | | | In a few places, we need to add a prefix to completions that replace the token. This change factors that logic into its own function prepend_token_prefix.
* | | Eliminate recurse_to_subdirectories functionGravatar ridiculousfish2015-08-08
| | |
* | | rename ACCEPT_INCOMPLETE to FOR_COMPLETIONS, which is clearerGravatar ridiculousfish2015-08-08
| | |
* | | Turn on the new wildcard expanderGravatar ridiculousfish2015-08-08
| | |
* | | Add some expansion testsGravatar ridiculousfish2015-08-08
| | |
* | | Initial implementation of wildcard match refactoringGravatar ridiculousfish2015-08-08
| |/ |/| | | | | Not yet turned on.
* | Making spacing of .fish files uniform.Gravatar Nicholas Maccharoli2015-08-08
| |
* | Add a missing typecastGravatar ridiculousfish2015-08-08
| |
* | Fix wrong max argument list size reportingGravatar Tom Smeding2015-08-08
| |
* | Merge pull request #2282 from leoetlino/patch-1Gravatar faho2015-08-08
|\ \ | | | | | | Fix a typo in the French translation file
| * | Fix a typo in the French translation fileGravatar Léo Lam2015-08-09
|/ / | | | | | | This is a non-exciting change at all -- just a quick and simple typo fix in the fish welcome message.
* | abbr completions: Describe abbreviations with what they abbreviateGravatar Fabian Homborg2015-08-06
| | | | | | | | | | i.e. "abbr -e <TAB>" will list am (alsamixer)
* | Fix extra redirection.Gravatar Mike Meyer2015-08-06
| |
* | Merge pull request #2267 from mwm/fossil-completionsGravatar faho2015-08-06
|\ \ | | | | | | Various fossil completions fixes
* | | Cower: Enable description and ignore errors when search string is too shortGravatar Fabian Homborg2015-08-06
| | |
* | | gpg: Fix key/user id completionGravatar Fabian Homborg2015-08-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was too simplistic, among other things it completed things that looked like key ids but weren't, didn't turn "\x3a" back into colons (which made the argument invalid).... gpg is weird. Might fix #2150
* | | gpg: send-keys takes a key id, not a user idGravatar Fabian Homborg2015-08-05
| | |
* | | gpg completion: Add "-k", don't append "," so muchGravatar Fabian Homborg2015-08-05
| | |
* | | Add completion for systemd's timedatectlGravatar Fabian Homborg2015-08-05
| | |
* | | pacman completion: Offer "command-options" firstGravatar Fabian Homborg2015-08-05
| | |
* | | Add iptables completionGravatar Fabian Homborg2015-08-05
| | | | | | | | | | | | This is far from perfect, but I need to gather more feedback.
* | | systemctl: Add new options from 220Gravatar Fabian Homborg2015-08-05
| | |
* | | Complete machines in systemd toolsGravatar Fabian Homborg2015-08-05
| | |
* | | vi-mode: Make \cc go to normal from insert modeGravatar Fabian Homborg2015-08-04
| | | | | | | | | | | | | | | | | | Keep the behavior for normal mode Fixes #2228
| * | Many small fixes, and done big one.Gravatar Mike Meyer2015-08-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bit one: Make all the fossil command invocations throw away stderr so we don't get annoying messages when not in a repository. Also: - Move checkout into alphabetical order. - Fix ls to complete against tags for -r option, not no option. - Add missing option to delete command. - Make commit complete against modified files. - Make add only complete against extra files. - Remove now ununused function to list extra & modified files. - Add -f option in a number of places where it seemd appropriate.
* | | Fix raw &amp in docsGravatar Kunal Mehta2015-08-04
| | | | | | | | | The missing semicolon caused a raw &amp to be rendered.
| * | Fix type, add tag completion to checkout.Gravatar Mike Meyer2015-08-03
| | |
| * | Add completions for fossil checkout.Gravatar Mike Meyer2015-08-03
| | |