| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-04-17 | When not sending data to a subprocess, close its stdin | Maxime Coste | |
| We were letting stdin untouched, which meant child processes had access to our terminal input. That meant `!fmt` was trying to read from our terminal input and catching keystrokes. Fixes #1281 | |||
| 2017-03-16 | Fixes some clang-tidy warning and add a few missing meta.hh include | Maxime Coste | |
| 2017-03-16 | Try to clean up option include a bit | Maxime Coste | |
| 2017-03-15 | Migrate WithBitOps template specialization to with_bit_ops function | Maxime Coste | |
| This way we dont depend on knowing the base template to enable bit ops on an enum type. | |||
| 2017-02-03 | Fix some bugs in non blocking pipe writing | Maxime Coste | |
| 2017-02-03 | Make piping data into shell commands non blocking | Maxime Coste | |
| Fixes #1180 | |||
| 2017-01-08 | Apply clang-tidy modernize to the codebase | Maxime Coste | |
| 2016-12-20 | Fix getting path confstr, the returned size includes the zero terminator | Maxime Coste | |
| Closes #1047 | |||
| 2016-12-15 | Use a POSIX guaranteed way of getting the shell path | Maxime Coste | |
| 2016-12-03 | Read as much as possible data from shell processes on each read event | Maxime Coste | |
| We were reading at most 1024 bytes every time, going back to the event loop. | |||
| 2016-12-01 | Make FDWatcher support Read, Write and Except events, instead of just Read | Maxime Coste | |
| 2016-11-30 | Hide the waiting for shell message once the shell returns | Maxime Coste | |
| 2016-11-30 | Use a Timer for Shell waiting notification | Maxime Coste | |
| Without a timer we were relying on other event sources to wake us up to display the information, which was usually a NormalIdle or a filesystem check timer. | |||
| 2016-11-28 | Cleanup include dependencies a bit | Maxime Coste | |
| 2016-10-29 | Display a status line message when Kakoune is waiting on a shell to complete | Maxime Coste | |
| If a shell commands takes more than 1s to execute, a message will appear on the status line notifying the user, along with the time Kakoune has been waiting for. | |||
| 2016-10-10 | Convert some uses of lambda to more concise std::mem_fn | Maxime Coste | |
| 2016-07-24 | Introduce chrono.hh | Maxime Coste | |
| 2016-05-06 | time window display buffer update in debug profile mode | Maxime Coste | |
| 2016-04-27 | Add another missing include in shell_manager.cc | Maxime Coste | |
| 2016-04-17 | Add support for env var name completion | Maxime Coste | |
| Fixes #659 | |||
| 2016-04-12 | ShellManager: do not open child stdin if there is no data to write to it | Maxime Coste | |
| Fixes #383 | |||
| 2016-02-28 | Code cleanup | Maxime Coste | |
| 2015-12-10 | Fix "unused result" warnings for several system calls. | Frank LENORMAND | |
| 2015-12-05 | Refactor some code in shell_manager.cc | Maxime Coste | |
| 2015-11-27 | Small cleanups | Maxime Coste | |
| 2015-11-27 | Consolidate writing to fd | Maxime Coste | |
| 2015-11-21 | Add a profiling debug flag to get timings for hooks/shell eval | Maxime Coste | |
| 2015-11-19 | Introduce a debug flags option to control some tracing | Maxime Coste | |
| Support shell|hooks and write traces in debug buffer | |||
| 2015-10-22 | Wrap the shell params en env vars in a ShellContext struct | Maxime Coste | |
| 2015-10-03 | Fix OSX compilation | Maxime Coste | |
| 2015-10-02 | Refactor ShellManager process spawning | Maxime Coste | |
| 2015-09-16 | Store key hash in IdMap | Maxime Coste | |
| 2015-09-16 | Use IdMap instead of UnorderedMap for ui options and env vars | Maxime Coste | |
| 2015-09-03 | Regex are overkill for shell manager env vars, we just need exact match or ↵ | Maxime Coste | |
| prefix match | |||
| 2015-07-25 | Tweak regex constructor calls | Maxime Coste | |
| 2015-06-09 | Fix race condition ShellManager::eval with SIGCHLD | Maxime Coste | |
| 2015-06-08 | Do not close stderr/stdout before program finish | Maxime Coste | |
| Programs like grep called in '$' command will fail due to SIGPIPE for example. So we need to keep the pipe open. | |||
| 2015-06-08 | Specify if ShellManager should read output or not using a flag | Maxime Coste | |
| Some program (xclip), will fork a daemon keeping stdout/stderr open, so waiting for them to be closed make kakoune hang. Commands discarding stdout can then just not wait on it. | |||
| 2015-06-06 | Move write_debug to buffer utils as write_to_debug_buffer | Maxime Coste | |
| 2015-06-01 | Port more code to use the format function instead of adhoc string concat | Maxime Coste | |
| 2015-05-26 | Small style tweaks | Maxime Coste | |
| 2015-04-27 | Replace some String temporaries with StringViews | Maxime Coste | |
| 2015-03-14 | Avoid stdout/stderr as variable names | Maxime Coste | |
| 2015-03-13 | Change ShellManager to return both stdout and the return value in a pair | Maxime Coste | |
| 2015-03-13 | Code style change in shell_manager.cc | Maxime Coste | |
| 2015-03-12 | Make split_path public | Maxime Coste | |
| 2015-03-10 | Refactor String, use a common StringOps interface, hide std::string | Maxime Coste | |
| 2015-03-09 | ArrayView content is not const anymore | Maxime Coste | |
| As in upcoming std c++ array_view, ArrayView<T> points to mutable data, use ArrayView<const T> or alias ConstArrayView<T> for const data. | |||
| 2015-01-12 | replace all std::vector with Vector | Maxime Coste | |
| 2015-01-06 | Rename memoryview to ArrayView | Maxime Coste | |
