aboutsummaryrefslogtreecommitdiffhomepage
path: root/highlight.cpp
Commit message (Collapse)AuthorAge
* Fix to make completions non-authoritative by default, which is why unknown ↵Gravatar ridiculousfish2012-08-06
| | | | options were always colored like errors (e.g. --rebase)
* Fix for assertion failure in syntax highlightingGravatar ridiculousfish2012-08-04
|
* Cleaned up lots of typecasts, simplified some string handlingGravatar ridiculousfish2012-08-04
|
* More warning fixes and switching from int to long or size_tGravatar ridiculousfish2012-08-04
|
* Additional warning cleanup and switching from int to size_t where appropriateGravatar ridiculousfish2012-08-04
|
* Warning cleanupGravatar ridiculousfish2012-08-04
|
* Lots of miscellaneous cleanup. Unified the path_get_cd_path, ↵Gravatar ridiculousfish2012-07-20
| | | | path_allocate_cd_path, etc. functions
* Renamed env_vars to env_vars_snapshot_tGravatar ridiculousfish2012-07-20
| | | | Cleanup of non-wcstring version of path_get_path
* Various changes to reduce fish's compiled code sizeGravatar ridiculousfish2012-07-17
| | | | OS X release build executable size dropped from 672k to 511k
* Untangle unescaping responsibilities in highlight.cpp. Fix cd ↵Gravatar ridiculousfish2012-07-06
| | | | | | autosuggestions to properly handle quotes. Factor out some of the quote unescaping behavior from reader.cpp to parse_util.cpp. Add some autosuggestion tests
* Some improvements to validate commands suggested from historyGravatar Siteshwar Vashisht2012-06-29
|
* Removed an errant printfGravatar ridiculousfish2012-06-17
|
* Fix to check for case insensitive filesystems in is_potential_pathGravatar ridiculousfish2012-06-16
| | | | Addresses https://github.com/fish-shell/fish-shell/issues/119
* Restore implicit cd for paths starting with ., .., or ~Gravatar ridiculousfish2012-06-02
|
* Fixed cd autosuggestion for absolute pathsGravatar ridiculousfish2012-05-13
| | | | Removed some unnecessary path cleanup that is_potential_path now handles
* Fix for https://github.com/ridiculousfish/fishfish/issues/3Gravatar ridiculousfish2012-05-13
| | | | cd's special autosuggestion was broken, now fixed. Also, there's some tests for it now.
* Lots of modernization changedGravatar ridiculousfish2012-05-09
| | | | Removed wcsdupcat
* Fix to do really nice syntax highlighting of cd command where it colors ↵Gravatar ridiculousfish2012-05-07
| | | | paths that cannot match any directory with error color
* Eliminate the silly autosuggest_parsed_command_t class; make it just a functionGravatar ridiculousfish2012-05-07
|
* Factor is_potential_path to properly handle CDPATHGravatar ridiculousfish2012-05-07
| | | | This will let us color cd commands better
* Made tests compile againGravatar ridiculousfish2012-05-07
| | | | | Renamed autosuggest_handle_special to autosuggest_special_validate_from_history Began work to factor autosuggest_special_validate_from_history together with autosuggest_suggest_special
* Improved fork reportingGravatar ridiculousfish2012-04-21
| | | | Made autosuggestion work properly for tilde expansion
* Fix for incorrectly highlighted parametersGravatar ridiculousfish2012-03-31
|
* Improve autosuggesting of cd commandGravatar ridiculousfish2012-03-30
|
* Fix for failing to highlight last quote (or quoted string contents)Gravatar ridiculousfish2012-03-30
|
* Fix lots of bugs related to the static analyzerGravatar ridiculousfish2012-03-26
| | | | Improved how screen.cpp interacts with output_set_writer()
* For for crash when typing backslash cGravatar ridiculousfish2012-03-03
|
* Put fish on a diet. Tracked down the biggest memory hogs and fixed them. ↵Gravatar ridiculousfish2012-03-03
| | | | Total allocations down by a factor of 3 or so, live allocations a few KB.
* Fix for out-of-bounds write in highlight_paramGravatar ridiculousfish2012-02-29
|
* Some more changes in preparation for turning on complete-based autosuggestionsGravatar ridiculousfish2012-02-26
|
* Fix for crash on redirectionsGravatar ridiculousfish2012-02-21
|
* Fix to change highlighting functions to take wcstring& instead of const ↵Gravatar ridiculousfish2012-02-21
| | | | wchar_t *
* Switch to using std::vector instead of int* for colors in highlight.cpp, for ↵Gravatar ridiculousfish2012-02-21
| | | | better range bounds checking
* Piling on more code to make autosuggestion try to guess directories even ↵Gravatar ridiculousfish2012-02-20
| | | | when they're not in the history
* Modified functions in function.h/.cpp to use wcstring instead wchar_t*, ↵Gravatar Siteshwar Vashisht2012-02-19
| | | | other files also modified to use wcstring.
* Fix to avoid calling signal_block off of hte main threadGravatar ridiculousfish2012-02-18
|
* Fix to prevent autosuggesting cd'ing to the current working directoryGravatar ridiculousfish2012-02-18
|
* Changes to make autosuggestion even smarter by specially recognizing the cd ↵Gravatar ridiculousfish2012-02-18
| | | | command.
* Enhanced directory detection in a way we don't actually need yetGravatar ridiculousfish2012-02-18
|
* Modified most functions in wutil.h/.cpp to use wcstring instead of wchar_t*, ↵Gravatar Siteshwar Vashisht2012-02-18
| | | | removing calls to c_str() while calling these functions in other files.
* Fix a crash when using quotes due to wgettext thread safety issues.Gravatar ridiculousfish2012-02-17
|
* Fixed parenthesis causing a crash or bizarre layout.Gravatar ridiculousfish2012-02-13
|
* Fix for busted directory checkGravatar ridiculousfish2012-02-13
|
* Support for setting both RGB and named colors on the same line, so the same ↵Gravatar ridiculousfish2012-02-13
| | | | config can work for multiple term types
* Added color.h, color.cpp. Got term256 colors working.Gravatar ridiculousfish2012-02-12
|
* Color workGravatar ridiculousfish2012-02-11
|
* Migrate errors from array_list_t to wcstring_list_tGravatar ridiculousfish2012-02-10
|
* Got rid of multiple cd paths, only current directory will be searched while ↵Gravatar Siteshwar Vashisht2012-02-09
| | | | changing directories, implicit cd (entering directory just by typing it's name) is removed.
* Removed halloc from highlight.cppGravatar ridiculousfish2012-02-08
|
* Cleanup al_list from builtin_complete.cppGravatar ridiculousfish2012-02-08
|