aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Cleanup al_list from builtin_complete.cppGravatar ridiculousfish2012-02-08
|
* Cleanup expand_escape_variableGravatar ridiculousfish2012-02-08
|
* CLeanup the io_stack in builtin.cpp, other changes to migrate away from al_listGravatar ridiculousfish2012-02-07
|
* Clean up exec_subshell, removing al_list from itGravatar ridiculousfish2012-02-07
|
* Really excise halloc from input.cppGravatar ridiculousfish2012-02-07
|
* Removed halloc from input.cppGravatar ridiculousfish2012-02-07
|
* Excised some more hallocGravatar ridiculousfish2012-02-07
|
* Replaced void*data with auto_ptr<function_data_t>, eliminating antoher halloc.Gravatar ridiculousfish2012-02-07
|
* Excised some hallocGravatar ridiculousfish2012-02-07
|
* Fix event_block_t list from ad-hoc linked list to std::dequeueGravatar ridiculousfish2012-02-07
|
* Removed discriminated union from block_t type, allowing us to store ↵Gravatar ridiculousfish2012-02-07
| | | | wcstrings in it
* Fixed a bug caused while highlighting double quoted strings. For e.g. ls ↵Gravatar Siteshwar Vashisht2012-02-07
| | | | "abc" shows up as invalid write for color of closing quote in valgrind.
* Added autosuggestion color variable fish_color_autosuggestionGravatar ridiculousfish2012-02-06
| | | | Fixed that nasty bug where fish would apply a color to both the foreground and background (yuck)
* Suppress autosuggesting during backspacing like browsers doGravatar ridiculousfish2012-02-06
|
* Use right arrow to accept autosuggestionsGravatar ridiculousfish2012-02-06
|
* Make history searching skip the autosuggestionGravatar ridiculousfish2012-02-06
|
* Fix some bugs related to not updating our buffer size as our command line ↵Gravatar ridiculousfish2012-02-06
| | | | changes
* Initial stab at autosuggestionsGravatar ridiculousfish2012-02-06
|
* Removed builtin_scripts.h and builtin_scripts.cpp from Xcode project because ↵Gravatar ridiculousfish2012-02-06
| | | | they're annoying in searches
* insert_str -> insert_stringGravatar ridiculousfish2012-02-06
|
* Removed buff_len field. One fewer field, hooray.Gravatar ridiculousfish2012-02-06
|
* Large set of changes to migrate reader_data_t's buffer to std::wstringGravatar ridiculousfish2012-02-06
|
* Const correctness changesGravatar ridiculousfish2012-02-06
|
* Removed lru.cpp (double oops)Gravatar ridiculousfish2012-02-06
|
* Added LRU.cpp (oops)Gravatar ridiculousfish2012-02-06
|
* Change the history so that when you go forwards, it no longer highlightsGravatar ridiculousfish2012-02-05
|
* Fixed history testsGravatar ridiculousfish2012-02-05
|
* Final cleanup of historyGravatar ridiculousfish2012-02-05
|
* Moved LRU to its own fileGravatar ridiculousfish2012-02-05
|
* Work on new history implementationGravatar ridiculousfish2012-02-05
|
* Removed the "don't highlight with stale data" code, that caused "flashing" ↵Gravatar ridiculousfish2012-02-03
| | | | as we typed
* Fix to highlight search results range matching againGravatar ridiculousfish2012-02-03
|
* Migrate search_buff to wcstringGravatar ridiculousfish2012-02-03
|
* Minor cleanup of background_highlight_context_tGravatar ridiculousfish2012-02-03
|
* CLean up current_filename, make it a std::stackGravatar ridiculousfish2012-02-02
|
* Migrate some al_list to std::vectorGravatar ridiculousfish2012-02-02
|
* Fixed a crash doing completion of commandsGravatar ridiculousfish2012-02-02
|
* Cleanup complete_cmd_descGravatar ridiculousfish2012-02-02
|
* Clean up uses of completion_tGravatar ridiculousfish2012-02-01
|
* Migrated off of old variant of expand_one that used hallocGravatar ridiculousfish2012-01-31
|
* Remove some old functions from expand.cpp that now have modern replacementsGravatar ridiculousfish2012-01-31
|
* Fixup wsetlocale to use wcstringGravatar ridiculousfish2012-01-31
|
* More cleanup of static string buffers in favor of wcstringGravatar ridiculousfish2012-01-31
|
* Stop using placement new like a weirdoGravatar ridiculousfish2012-01-31
|
* Cleanup of builtins. No more hashes.Gravatar ridiculousfish2012-01-31
|
* Clean up how argv is stored in process_tGravatar ridiculousfish2012-01-31
|
* Squashed all known remaining leaks!Gravatar ridiculousfish2012-01-31
|
* Squash a bunch of warningsGravatar ridiculousfish2012-01-31
|
* Change parser_t::parse_job's args array to be a local, rather than just leak ↵Gravatar ridiculousfish2012-01-31
| | | | it, which no longer seems to crash
* Substantial modifications of expand_variables to modernize, normalize memory ↵Gravatar ridiculousfish2012-01-30
| | | | management, adopt C++ types