aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fish_tests.cpp
Commit message (Collapse)AuthorAge
* 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