aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | Merge branch 'master' into parser_cleanupGravatar ridiculousfish2014-03-01
|\|
| * Implement status -n (line number) with new parserGravatar ridiculousfish2014-03-01
| |
* | Begin removing remnants of old parserGravatar ridiculousfish2014-02-28
| |
| * 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
* | Enable new parser by default (!). Fixes #557.Gravatar ridiculousfish2014-02-27
|/ | | | This entirely replaces fish's execution model. Bugs are likely. See commit 290aae80 for what this is about.
* Correct some mistakes in the fish grammar commentGravatar ridiculousfish2014-02-27
|
* Merge pull request #1317 from pullreq/cppGravatar Konrad Borowski2014-02-27
|\ | | | | Fixup filenames in comments; remove dead code found with scan-build.
| * Fixes .c -> .cpp in comments. For doxygen.Gravatar Geoff Nixon2014-02-27
| |
| * Dead storesGravatar 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.
* Optimize some fast paths in autoload loading. Use an iterator to avoidGravatar ridiculousfish2014-02-24
| | | | | doing multiple set lookups, and cache the tokenized path to avoid multiple memory allocations.
* Optimize the tokenize_variable_array hot spot to do less string copyingGravatar ridiculousfish2014-02-24
|
* 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.
* Turn on the new pager by default, as described in #291Gravatar ridiculousfish2014-02-22
|
* Fix for busted tab completions in for loop arguments, switch statements,Gravatar ridiculousfish2014-02-21
| | | | and other syntactic constructs. Fixes #1309
* Expand the variable name as an ordinary parameter in for loops. AddedGravatar ridiculousfish2014-02-21
| | | | test for it too.
* Correctly color "end" command, and variable name in for loop.Gravatar ridiculousfish2014-02-21
|
* Allow double-tapping tab to fully disclose pager, per #291Gravatar ridiculousfish2014-02-20
|
* Fix to stop reporting config.fish execution as coming from "standardGravatar ridiculousfish2014-02-20
| | | | input" within backtraces
* 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.
* Clean up Xcode project and remove unnecessary ARCHS settingsGravatar ridiculousfish2014-02-17
|
* Tweak error reporting in new parser to use fewer linesGravatar ridiculousfish2014-02-17
|
* Remove the reader_selected_completion_changed callback. Fix a hang whenGravatar ridiculousfish2014-02-16
| | | | the pager gets empty, as reported in 291
* Make the pager search field allow searching on the prefixGravatar ridiculousfish2014-02-16
|
* 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
|
* Ignore SIGPIPE in fishd. Fixes #1084Gravatar ridiculousfish2014-02-14
|
* Reimplement exec parsing. Instead of special-casing exec as a command,Gravatar ridiculousfish2014-02-13
| | | | | | promote it to a decoration (like 'command' or 'builtin'). This makes tab completion and syntax highlighting treat exec's first argument as a command and is otherwise a nice simplification. Fixes #1300
* Fix the build by including <algorithm> headerGravatar ridiculousfish2014-02-12
|
* Test and fix issue where, if binding X is a prefix of binding Y, and XGravatar ridiculousfish2014-02-12
| | | | | | | is specified before Y, then Y will never be invoked because X will always get there first. Now instead we order bindings in descending order by length, so that we always test the binding before any others that prefixes it. Fixes #1283.
* Tests and fix to allow return to work correctly within if statements. Closes ↵Gravatar ridiculousfish2014-02-12
| | | | #1297.
* .travis.yml: reduce verbosity of IRC notificationsGravatar David Adam2014-02-11
|
* document Alt-F as well for accepting part of autosuggestionGravatar David Adam2014-02-10
| | | | Closes #1290.
* Clean up old syntax highlighting code now that the new parser seems to workGravatar ridiculousfish2014-02-09
|
* Fix for Python out-of-range exception when accessing Bindings tabGravatar ridiculousfish2014-02-09
|
* Fix for miscoloring quote following variable nameGravatar ridiculousfish2014-02-09
|
* Don't complete variables when single quoted. Fixes #1023Gravatar ridiculousfish2014-02-09
|
* Partially rework profiling. Fix profiling crash with new parser. FixesGravatar ridiculousfish2014-02-09
| | | | 1295
* Make if statements always return success at the end, matching otherGravatar ridiculousfish2014-02-07
| | | | shells. Fixes #1061.
* README.md: document build and runtime dependencies better.Gravatar David Adam2014-02-06
|
* README.md: update build status imageGravatar David Adam2014-02-06
| | | | (oops!)
* Use type int instead of type shortGravatar ridiculousfish2014-02-05
|
* Unbreak C++11 due to narrowing; use non-conflicting declaration FISH_COLORS ↵Gravatar ridiculousfish2014-02-05
| | | | instead of COLORS; remove deprecated register type.
* Pass --always to git describe to ensure we always get a versionGravatar ridiculousfish2014-02-05
| | | | number. Hopefully fixes travis-ci. See #1287
* .travis.yml: add https://travis-ci.org/ automatic buildsGravatar David Adam2014-02-05
|
* math.fish: exit if no output (e.g. from syntax error)Gravatar glennj2014-02-05
| | | | Closes #1175
* Make builtin_complete output escaped completions. Fixes #1127Gravatar ridiculousfish2014-02-04
|
* Make the test harness output file diffs on failureGravatar ridiculousfish2014-02-04
|