| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-11-10 | Wrap: fix scrolling to keep cursor visible logic | Maxime Coste | |
| 2017-11-09 | c-family.kak: Remove invalid 'compl' keyword from C++ highlight | Maxime Coste | |
| 2017-11-09 | c-family.kak: use space separated words list | Maxime Coste | |
| 2017-11-09 | Merge remote-tracking branch 'fsub/c-family' | Maxime Coste | |
| 2017-11-08 | Docs: use full names for exec/eval and add links to relevant pages | Delapouite | |
| 2017-11-08 | README: More explicit link name | Maxime Coste | |
| 2017-11-08 | Merge remote-tracking branch 'Delapouite/README' | Maxime Coste | |
| 2017-11-08 | Docs: group commands in common sections | Delapouite | |
| 2017-11-08 | doc.kak: Use a github compatible anchor generation | Maxime Coste | |
| Convert session names to lowercase and replace spaces with minus to generate anchor names. | |||
| 2017-11-08 | doc.kak: anchor/section completion support | Maxime Coste | |
| 2017-11-08 | doc.kak: Support anchors and internal links | Maxime Coste | |
| Underline links, support jumping to a specific anchor either in the current page or another one, use those new features in some pages. | |||
| 2017-11-08 | CONTRIBUTING: document explicitely that 'John Doe' is a placeholder | Maxime Coste | |
| 2017-11-08 | Doc: add missing symlink to access ocumentation pages | Maxime Coste | |
| a share/kak/doc symlink to doc/pages was not committed, preventing non-installed kakoune from accessing the on line documentation. | |||
| 2017-11-08 | Add test case for replaying insert with normal mode commands | Maxime Coste | |
| 2017-11-08 | InputHandler: handle of last insert keys happening in nested modes | Maxime Coste | |
| Move recording of keys to the input handler itself instead of the Insert mode so that eventual nested modes (potentially introduced by <a-;> will get their keys recorded as well). Fixes #1680 | |||
| 2017-11-08 | Fix pipe logic in the case where the selections were accessed in the cmdline | Maxime Coste | |
| When using an env var that needed the selections in the pipe command line, say $kak_selection, the selection update code would run, modifying the selections to adapt to eventual changes. But the rest of the pipe logic was assuming the selections would not change, leading to bugs. | |||
| 2017-11-07 | Buffer: change clamp logic to preserve ordering | Maxime Coste | |
| clamp could change ordering between a coordinate past the end. Say in a buffer with 1 line of 2 char: {0, 1} was clamped to {0, 1} {1, 0} was clamped to {0, 0} That was reversing their ordering, and might be the root cause of the bug lurking in undo range computation. | |||
| 2017-11-07 | Slight code cleanup in change update functions | Maxime Coste | |
| 2017-11-07 | Docs: add README links to goto/view commands and define-command pages | Delapouite | |
| 2017-11-06 | doc.kak: Remove unused lines | Maxime Coste | |
| 2017-11-06 | doc.kak: Support jumping on links using <ret> | Maxime Coste | |
| 2017-11-06 | doc.kak: Simplify completion script | Maxime Coste | |
| 2017-11-06 | Merge remote-tracking branch 'Delapouite/lint' | Maxime Coste | |
| 2017-11-06 | Merge remote-tracking branch 'Delapouite/pages' | Maxime Coste | |
| 2017-11-06 | Fix lint.kak evaluate-commands → eval | Delapouite | |
| 2017-11-06 | Docs: use asciidoc links between pages | Delapouite | |
| 2017-11-06 | Add missing include in remote.cc | Maxime Coste | |
| strerror is defined in <string.h> | |||
| 2017-11-06 | Do not allow rename-session to introduce '/' in session names | Maxime Coste | |
| 2017-11-05 | Fix README TOC | Delapouite | |
| 2017-11-05 | c-family.kak: Add missing C++ keywords, attributes, and types | fsub | |
| 2017-11-05 | c-family.kak: Sort keywords, attributes, values, and decorators | fsub | |
| 2017-11-05 | Merge remote-tracking branch 'lenormf/fix-private-commands-in-register' | Maxime Coste | |
| 2017-11-05 | Merge remote-tracking branch 'lenormf/fix-tupfile' | Maxime Coste | |
| 2017-11-05 | Merge remote-tracking branch 'Screwtapello/support-rust-doc-comments' | Maxime Coste | |
| 2017-11-04 | rust.kak: Support Rust's documentation comments. | Tim Allen | |
| As well as ordinary `//` line-comments, Rust regards `///` comments as documentation applying to the following item, and `//!` comments as documentation applying to the enclosing item, so we should copy those to new lines, too. | |||
| 2017-11-04 | CommandManager: tweak naming | Maxime Coste | |
| 2017-11-04 | rc: Fix `Tupfile` highlighting | Frank LENORMAND | |
| 2017-11-04 | contrib: Adapt `Tupfile` to upstream changes | Frank LENORMAND | |
| 2017-11-04 | Introduce matching_pairs option that controls the pairs used by `m` | Maxime Coste | |
| 2017-11-04 | rc: Simplify Dockerfile support, highlight values and additional keywords | Frank LENORMAND | |
| 2017-11-04 | src: Don't save whitespace-led commands in the `:` register | Frank LENORMAND | |
| 2017-11-04 | Add an indent test for html closing tag | Maxime Coste | |
| 2017-11-04 | Remote: stricter validation of the session names | Maxime Coste | |
| Creating a session will not accept any slashes in the session path, connecting to an existing session will accept at most one slash to allow for specifying the session of a different user. Fixes #1635 | |||
| 2017-11-04 | Code style tweak | Maxime Coste | |
| 2017-11-03 | refactor comment.kak | Olivier Perret | |
| * move most of the kakoune implementation outside of the shell scope to avoid unnecessary escaping * let kakoune do the option expansions to avoid injection of special characters * split block commenting options into two and do the < to <lt> conversion directly * show error messages directly in the buffer rather than in *debug* Fixes #1600 and #875 | |||
| 2017-11-03 | commenting: move rust to the C-style group | Olivier Perret | |
| 2017-11-03 | Merge remote-tracking branch 'lenormf/fix-rc-aliases' | Maxime Coste | |
| 2017-11-03 | Wrap: rework logic to avoid infinite loop with multiple wrap highlighters | Maxime Coste | |
| The display is still going to be wrong, as wrapping is going to take place multiple times, but Kakoune should not freeze anymore. | |||
| 2017-11-03 | Remove uneeded forward declaration | Maxime Coste | |
| 2017-11-03 | src rc: Rename `exec`/`eval` into `execute-keys`/`evaluate-commands` | Frank LENORMAND | |
