| Age | Commit message (Collapse) | Author |
|
|
|
ui_options is a std::unordered_map<String, String> that gets
forwarded to the user interface. Add support ncurses_status_on_top.
|
|
|
|
|
|
The previous behaviour ended up asking twice for reloading if the
buffer was modified again after Kakoune had detected the first
change.
|
|
|
|
|
|
|
|
|
|
Face also stores the attributes
|
|
|
|
|
|
Fixes #121
|
|
|
|
BufferCoord -> ByteCoord
DisplayCoord -> CharCoord
Moved their definition along with LineAndColumn into coord.hh
|
|
With this refresh method user interface can defer updating
the display until really needed.
|
|
At connection, a remote client sends all its environement to the
server, which then provides access to client env through
kak_client_env_VAR_NAME variables in the shell.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ClientManager now stores only the free windows, clients take
ownership of its own.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Auto show completion even before the first key is pressed
* Auto show next completions when validating a single choice completion
|
|
|
|
|
|
|
|
|
|
|
|
Controlled by the autoshowcompl option
Completers now take a CompletionFlag parameter, used to specify
we want fast completion (tag completion can be slow, we do not
want to run it if not explicitely wanted by the user).
|
|
|
|
|
|
|
|
|
|
|
|
* Buffer now store a m_fs_timestamp field.
* Client in Normal mode checks current buffer file every 500 ms, or
each time it goes back to Normal mode.
|
|
|
|
|
|
|
|
|
|
|