summaryrefslogtreecommitdiff
path: root/src/commands.hh
AgeCommit message (Collapse)Author
2018-07-19Re-introduce kill_session::exit_status, @lenormf was rightMaxime Coste
As discussed in #2186, in the end we need the exit status for the case where the local client exited first (the server forked to background) then another client trigger the kill command.
2015-12-27Remove the exec_keys functionMaxime Coste
2015-09-02Fix forward declare struct/class mismatchMaxime Coste
2015-08-26Add a kill command that kills the current sessionMaxime Coste
Fixes #331 A given session can be killed with 'echo kill | kak -p <session>'
2015-07-28Use forward declaration instead of include in commands.hhMaxime Coste
2015-03-09ArrayView content is not const anymoreMaxime 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-06Rename memoryview to ArrayViewMaxime Coste
2014-12-23Remove trailing blank linesMaxime Coste
2014-12-12Add support for user mappings, bound to commaMaxime Coste
:map have a 'user' mode that is accessible through the comma key. the mapping will get executed in normal mode.
2014-01-27Fix compilation with clang 3.4Maxime Coste
2013-02-18expose exec_keys function in commands.hhMaxime Coste
2012-05-07move commands to commands.{cc,hh}Maxime Coste