aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.cpp
Commit message (Collapse)AuthorAge
* Add support for querying variables with scope options as requested in issue #132Gravatar Siteshwar Vashisht2012-06-18
|
* Fix for https://github.com/fish-shell/fish-shell/issues/135Gravatar ridiculousfish2012-06-16
| | | | Don't use std::map::insert when we need to overwrite values
* Cleanup SHLVL variableGravatar ridiculousfish2012-05-09
|
* Adopt wcstring in env_setGravatar ridiculousfish2012-05-09
|
* Fix to better support CDPATHGravatar ridiculousfish2012-05-06
|
* Fix for a deadlock when env_get_string ends up calling env_get_stringGravatar ridiculousfish2012-04-23
|
* Cleanup proc_had_barrierGravatar ridiculousfish2012-03-31
| | | | Ensure we don't try to do a universal barrier off of the main thread
* Fix lots of bugs related to the static analyzerGravatar ridiculousfish2012-03-26
| | | | Improved how screen.cpp interacts with output_set_writer()
* Remove some dead variables.Gravatar ridiculousfish2012-03-25
| | | | | Fix screwy output for invalid tilde expansion in expand.cpp Some cleanup per clang static analyzer
* Lots of work on web configGravatar ridiculousfish2012-03-25
| | | | Change to make fish immediately show color changes
* Re-implement $history variableGravatar ridiculousfish2012-03-19
| | | | Added -L option to set to mean "don't abbreviate"
* Allow g_log_forks to be set by fish_log_forks env varGravatar ridiculousfish2012-03-09
|
* Implemented test as a builtin (!)Gravatar ridiculousfish2012-03-07
|
* Move special handling of DISPLAY environment variable from etc/config.fish ↵Gravatar ridiculousfish2012-03-06
| | | | to fish itself to reduce number of fork calls made at launch
* Notice when fish_term256 changes and react to itGravatar ridiculousfish2012-03-05
|
* We had identical format_val and to_string; standardize on to_stringGravatar ridiculousfish2012-03-05
|
* Fix a bug where wfopen would always failGravatar ridiculousfish2012-03-03
| | | | Removed some buffer_t
* Changed iterators from iter++ to ++iterGravatar ridiculousfish2012-03-01
| | | | Large set of changes to history to ensure that histories from other sessions don't "bleed" into the current session
* More work on improving interaction between fork and pthreads. Added ↵Gravatar ridiculousfish2012-02-29
| | | | null_terminated_array_t class.
* Fix for error messages when loading completionsGravatar ridiculousfish2012-02-26
|
* More work towards autosuggesting completionsGravatar ridiculousfish2012-02-25
|
* Modified env_get_string() to accept wcstring instead of wchar_t*.Gravatar Siteshwar Vashisht2012-02-24
|
* Removed a leaking wcsdupGravatar ridiculousfish2012-02-21
|
* Removed an optimization obviated by our use of wcstring from env.cppGravatar ridiculousfish2012-02-21
|
* Squash some warningsGravatar ridiculousfish2012-02-18
|
* Removed tests for hash_table_t from fish_tests.cppGravatar Siteshwar Vashisht2012-02-18
|
* Fix for properly removing universal variable.Gravatar Siteshwar Vashisht2012-02-18
|
* Squash a leak in LRU cachesGravatar ridiculousfish2012-02-17
|
* Fix for crash in env.cpp where a deleted entry was not removed from the mapGravatar ridiculousfish2012-02-17
|
* Fix to properly null-terminate export listGravatar ridiculousfish2012-02-17
|
* Switched to std::map instead of hash_table_t in env.cpp and ↵Gravatar Siteshwar Vashisht2012-02-18
| | | | env_universal_common.cpp.
* Removed some al_list functionsGravatar ridiculousfish2012-02-10
|
* Get event_t off of halloc (!)Gravatar ridiculousfish2012-02-08
|
* 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.
* Remove old env_get_names implementationGravatar ridiculousfish2012-02-08
|
* Removed halloc from input.cppGravatar ridiculousfish2012-02-07
|
* Excised some hallocGravatar ridiculousfish2012-02-07
|
* Const correctness changesGravatar ridiculousfish2012-02-06
|
* Work on new history implementationGravatar ridiculousfish2012-02-05
|
* Fixup wsetlocale to use wcstringGravatar ridiculousfish2012-01-31
|
* LRU work to load functions off of the main thread.Gravatar ridiculousfish2012-01-28
| | | | We'll have to reevaluate this after we fix function autocomplete
* Convert some cases where parsers are created to using PARSER_TYPE_GENERALGravatar ridiculousfish2012-01-22
|
* More work towards instanced parserGravatar ridiculousfish2012-01-20
|
* Redesign new environment variables to use env_var_t instead of wcstringGravatar Peter Ammon2012-01-14
| | | | Migrate uses of empty() to missing() to distinguish between empty variable and unset variable
* Introduce env_var_t to replace empty string as missing environment variableGravatar Peter Ammon2012-01-14
|
* Merge branch 'Use_env_get_string' into CPlusPlusGravatar Siteshwar Vashisht2012-01-14
|\ | | | | | | | | Conflicts: function.cpp
| * Fixed connection error to fishd server in env.cppGravatar Siteshwar Vashisht2012-01-12
| |
| * Modified env.cpp to use env_get_string()Gravatar Siteshwar Vashisht2012-01-12
| |
* | Additional migration to STL data structuresGravatar ridiculousfish2012-01-10
| |
| * Modified complete.cpp to use env_get_string(); Fixed env_get_string() return ↵Gravatar Siteshwar Vashisht2012-01-10
|/ | | | an empty wcstring instead of returning 0.