summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-11-21Do not record keys that were not user generatedMaxime Coste
2014-11-21Do not reset edition level to 0 on buffer changeMaxime Coste
Keep it as is, commit undo in current buffer, and we will commit it in the new buffer when edition level gets back to 0.
2014-11-20Fix missing include in assert.ccMaxime Coste
2014-11-20Fix info box placement when too wideMaxime Coste
2014-11-20Improve line wrapping behaviourMaxime Coste
2014-11-20Wrap info boxes text in ncurses display even in Inline menu styleMaxime Coste
2014-11-20Improve wrap_lines behaviour, split on punctiation as wellMaxime Coste
2014-11-20Change wrap_lines to return StringViews, move it to string.ccMaxime Coste
2014-11-18Refresh stdscr at startup to avoid flickeringMaxime Coste
2014-11-17Tweak option completion behaviourMaxime Coste
2014-11-17Remove unneeded string copiesMaxime Coste
2014-11-17option completion are valid until a modification is made before itMaxime Coste
2014-11-17Import std::begin/std::end so that container utils work correctly with non ↵Maxime Coste
std containers
2014-11-16Yet more StringView params, less const String&Maxime Coste
2014-11-15More const String& to StringViewMaxime Coste
2014-11-14const String& to StringViewMaxime Coste
2014-11-13small fixMaxime Coste
2014-11-12Cleanup includesMaxime Coste
2014-11-12Use general flags utility for Face AttributeMaxime Coste
2014-11-12Fix case where a context ends up locked in no-hooks modeMaxime Coste
2014-11-11change filter mode to make backup of files to .kak-bak and edit in placeMaxime Coste
Add a -q option to filter mode to be quiet about errors while applying keys.
2014-11-11Reduce idle timeout to 50 millisecondsMaxime Coste
2014-11-11Hide info box when closing insert completion menuMaxime Coste
2014-11-11Remove %rec{...} strings, now "..." strings expand their contentMaxime Coste
2014-11-11fix clang compilationMaxime Coste
2014-11-10Add ui_options option for UserInterface configurationMaxime Coste
ui_options is a std::unordered_map<String, String> that gets forwarded to the user interface. Add support ncurses_status_on_top.
2014-11-10Add support for unordered_map optionsMaxime Coste
2014-11-10Display status line on top in ncursesMaxime Coste
2014-11-10Support hinting if an inline info should be above or below the anchorMaxime Coste
Used by ctags function info, we always want it *above* the opening parenthesis so that it does not hide multi line parameter lists.
2014-11-09refactor parse_keysMaxime Coste
2014-11-09small code simplificationMaxime Coste
2014-11-08For {Menu,Info}Style::Prompt, choose the anchor directly in ncurses codeMaxime Coste
2014-11-08Add a MenuDoc style for info box, that will place it next to the menuMaxime Coste
2014-11-07Initial support for insert completion docstringMaxime Coste
2014-11-07small style fixMaxime Coste
2014-11-06Small refactoring in remote.ccMaxime Coste
2014-11-05Simplify RemoteClient creation codeMaxime Coste
2014-11-05Fix potential alignment bugMaxime Coste
2014-11-04Fix bug in insert completer deregisteringMaxime Coste
The context options might change, as the context might have a different window/buffer from the one at creation. So we need to store the correct option manager rather than ask the context for it.
2014-11-04Reuse existing buffer when creating a fifo oneMaxime Coste
That way, client having this buffer already visible wont switch to another one due to previous buffer getting deleted
2014-11-04Tweak flags implementationMaxime Coste
2014-11-04Change Value to be non copyableMaxime Coste
2014-11-04minor code cleanupMaxime Coste
2014-11-04Use unescape rather than a regex in command manager parsingMaxime Coste
2014-11-04Support single char StringViewMaxime Coste
remove single char escape function overload, add unescape function
2014-11-04Use StringViews for some helper functions in selectors.ccMaxime Coste
2014-11-03Open fifo buffers in non block modeMaxime Coste
2014-11-02Remove AutoRegister util templateMaxime Coste
2014-11-01Fix buffer being considered modified after reloadingMaxime Coste
2014-11-01move more parameters from const String& to StringViewMaxime Coste