aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.cpp
Commit message (Expand)AuthorAge
* Formatting and style updatesGravatar ridiculousfish2013-05-05
* Rely on $PWD instead of getcwd() more oftenGravatar ridiculousfish2013-04-27
* Teach case-insensitive completions about tildes. Fixes https://github.com/fis...Gravatar ridiculousfish2013-04-07
* Add some more cancellability to autosuggestionsGravatar ridiculousfish2013-04-07
* Fix for issue where a file may be incompletely read on receipt of a signal.Gravatar ridiculousfish2013-04-07
* Mark stdin as nonblocking if we get EWOULDBLOCK, and before handing it off to...Gravatar ridiculousfish2013-04-07
* Repaint after completionsGravatar ridiculousfish2013-04-04
* Add callbacks that get invoked before the next call to select(), which will a...Gravatar ridiculousfish2013-04-03
* Update code formattingGravatar ridiculousfish2013-03-21
* Return key should only insert a newline if backslashed character is whitespac...Gravatar ridiculousfish2013-03-12
* Spelling mistake in commentGravatar ridiculousfish2013-03-11
* Add support for making a leading space not save to historyGravatar ridiculousfish2013-03-10
* Break out COMPLETE_NO_CASE and COMPLETE_REPLACES_TOKEN into separate flags, i...Gravatar ridiculousfish2013-03-05
* Kill termio.h and sys/termios.hGravatar David Adam (zanchey)2013-03-05
* Additional changes related to https://github.com/fish-shell/fish-shell/pull/592Gravatar ridiculousfish2013-02-28
* Use swap instead of copying in reader_repaint_without_autosuggestionGravatar ridiculousfish2013-02-20
* Clear the autosuggestion from the old commandline when showing the completion...Gravatar Yannis Chatzimichos2013-02-20
* Clean up comments and fix spelling errorsGravatar Yannis Chatzimichos2013-02-20
* Large set of changes to how PATH is handled. Changed fish to no longer modify...Gravatar ridiculousfish2013-02-19
* Fix for issue where backward kill line crashes if performed while the cursor ...Gravatar ridiculousfish2013-02-17
* More cleanup based on static analysisGravatar ridiculousfish2013-02-16
* First stab at builtin set_color. Moved set_color.cpp to builtin_set_color.cpp...Gravatar ridiculousfish2013-02-14
* Fix to look up fish_pager in __fish_bin_dir instead of by using PATH, in prep...Gravatar ridiculousfish2013-02-13
* Clean up env_var_table_t. Switch from storing var_uni_entry_t* to var_uni_ent...Gravatar ridiculousfish2013-02-11
* Make io_data_t::fd constGravatar Cheer Xiao2013-02-11
* remove __warn_unused attribute from exec_subshellGravatar Jan Kanis2013-02-06
* merge branch 'bug-537' and branch 'bug-read-ctrlC'. This should fix both #537...Gravatar Jan Kanis2013-02-05
|\
| * rename reader_cancel_thread to reader_thread_job_is_stale, update commentsGravatar Jan Kanis2013-02-05
* | FormattingGravatar ridiculousfish2013-02-03
* | Teach fish how to put completion data inside a closing quoteGravatar ridiculousfish2013-02-02
* | Make subcommands modify $status, and make builtin_set not modify status unles...Gravatar ridiculousfish2013-01-31
* | Initial set of changes working to make fish robust against running out of fil...Gravatar ridiculousfish2013-01-30
* | Fix unused return value warning a different wayGravatar ridiculousfish2013-01-27
* | Fixed an unused variable warningGravatar ridiculousfish2013-01-27
* | Fix to output the prompt even if fish_prompt failsGravatar ridiculousfish2013-01-27
* | Indent switch + case properly. https://github.com/fish-shell/fish-shell/issue...Gravatar ridiculousfish2013-01-24
| * make the casting magic standards compliant and avoid compiler warnings; add e...Gravatar Jan Kanis2013-01-24
| * replace compiler-supported TLS with pthread_get/setspecific; remove GPLv3 cod...Gravatar Jan Kanis2013-01-24
| * make threadlocal use conditional on configure check. NB: This revision mixes ...Gravatar Jan Kanis2013-01-23
| * implement reader_cancel_thread using __thread thread-local storageGravatar Jan Kanis2013-01-23
| * tweak reader interrupt behaviorGravatar Jan Kanis2013-01-22
| * rename reader_data_t.interruptible to exit_on_interruptGravatar Jan Kanis2013-01-22
| * move work out of interrupt handler (which is safer as well)Gravatar Jan Kanis2013-01-22
| * fix comments on #516. Split `reader_interrupted` into a `reader_interrupted` ...Gravatar Jan Kanis2013-01-22
| * make the `read` builtin respect ctrl-CGravatar Jan Kanis2013-01-20
| * create reader_data_t.interruptible flag and infrastructure to make it work.Gravatar Jan Kanis2013-01-20
|/
* Convert io_buffer_read to io_buffer_t::readGravatar Cheer Xiao2013-01-17
* Convert io_buffer_create to static io_buffer_t::create, make io_buffer_t cons...Gravatar Cheer Xiao2013-01-17
* Convert io_buffer_destroy to ~io_buffer_tGravatar Cheer Xiao2013-01-17
* Split out io_buffer_t, make input_redirect in exec() a raw pointerGravatar Cheer Xiao2013-01-17