aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fish_tests.cpp
Commit message (Collapse)AuthorAge
...
* 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.
* Make expansion test robust against different filesystem ordersGravatar ridiculousfish2015-08-08
| | | | Should make the tests pass on Linux
* Initial implementation of intermediate fuzzy completionGravatar ridiculousfish2015-08-08
| | | | e.g. /u/l/b<tab> may be expanded to /usr/local/bin
* rename FOR_COMPLETIONS to EXPAND_FOR_COMPLETIONSGravatar ridiculousfish2015-08-08
| | | | This is yet clearer
* 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.
* rename ACCEPT_INCOMPLETE to FOR_COMPLETIONS, which is clearerGravatar ridiculousfish2015-08-08
|
* Add some expansion testsGravatar ridiculousfish2015-08-08
|
* Initial implementation of wildcard match refactoringGravatar ridiculousfish2015-08-08
| | | | Not yet turned on.
* Stop passing mutable references to completions aroundGravatar ridiculousfish2015-07-27
| | | | | Replace uses of vector<completion_t>& with vector<completion_t>* This makes it clear at the call site that the object may be mutated.
* Support file tab completion after = and : separatorsGravatar ridiculousfish2015-07-27
| | | | | | For example, env VAR=/usr<tab> will now work as expected Fixes #2178
* Handle getcwd failures to satisfy the linterGravatar ridiculousfish2015-07-26
|
* Cast getcwd() to void to defeat a warningGravatar ridiculousfish2015-07-26
|
* Continue migration to the new tokenizer interfaceGravatar ridiculousfish2015-07-26
|
* Early reworking of tokenizer interfaceGravatar ridiculousfish2015-07-25
|
* Remove some dead codeGravatar ridiculousfish2015-07-25
|
* Migrate source files into src/ directoryGravatar ridiculousfish2015-07-24
This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866