summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-12-07Add support for adding saved selections to current ones with <a-z>Maxime Coste
2015-12-06Change eolformat and BOM options to be enums instead of stringsMaxime Coste
2015-12-05Improve info box placement behaviour in some corner casesMaxime Coste
2015-12-05Small code refactorMaxime Coste
2015-12-05Refactor some code in shell_manager.ccMaxime Coste
2015-12-03Support -e in filter mode to give commands to execute (executed before keys)Maxime Coste
2015-12-02Fix unset option when using the current scope and it points to globalMaxime Coste
2015-12-02Another try to fix csr problems (#469)Maxime Coste
2015-12-02Remove support for %arg{#}, can be added back if we got a use caseMaxime Coste
It is very unlikely we need %arg{#} without needing a %sh anyway.
2015-12-02Forward each params in %arg{@} separatelyMaxime Coste
2015-12-01Add argument expansion supportMaxime Coste
2015-12-01Change def -shell-params to def -params and take the counts as parametersMaxime Coste
2015-12-01Update buffer display names after changing working directoryMaxime Coste
Fixes #501
2015-11-30Run InsertIdle after reseting completer to permit InsertIdle to display an ↵Maxime Coste
info box
2015-11-30Try to just reset the scroll region to workaround #469Maxime Coste
2015-11-27Support dropping last jump and use it to fix :tag double jump pushMaxime Coste
Fixes #492
2015-11-27Disable history in all non interactive contextsMaxime Coste
2015-11-27Small cleanupsMaxime Coste
2015-11-27Consolidate writing to fdMaxime Coste
2015-11-26Remind user hooks disable when replaying last insertMaxime Coste
Fixes #495
2015-11-26Add missing <cstdio> includeMaxime Coste
Fixes #498
2015-11-26add rc/grench.kakAlex Leferry 2
2015-11-26select/split interpret count parameter as the capture group to useMaxime Coste
count being 0 by default, we use the whole match, but we can now specify to use capture 1 with 1s<regex><ret>.
2015-11-26Preserve default registers in exec/eval by defaultMaxime Coste
2015-11-25Add -save-regs <regs> option to exec and eval to preserve registersMaxime Coste
Fixes #279
2015-11-25Refactor registers to initialize all of them at startup and add null registerMaxime Coste
Fixes #497
2015-11-25Add a static const String::ms_empty empty stringMaxime Coste
2015-11-25Reject non ascii register namesMaxime Coste
Fixes #493
2015-11-24Add StatusLine{Mode,Info,Value} built in facesMaxime Coste
Fixes #491
2015-11-23Add support for various completions in :promptMaxime Coste
Fixes #489
2015-11-22Support opening new files on kak -c command lineMaxime Coste
Fixes #485
2015-11-21Fix onkey autoinfoMaxime Coste
2015-11-21Merge remote-tracking branch 'somasis/master'Maxime Coste
2015-11-21Add a profiling debug flag to get timings for hooks/shell evalMaxime Coste
2015-11-20Move enum option handling in enum.hh and refactor enum optionsMaxime Coste
2015-11-19Makefile: Allow for passing include/ncursesw pathKylie McClain
2015-11-19Introduce a debug flags option to control some tracingMaxime Coste
Support shell|hooks and write traces in debug buffer
2015-11-19Merge branch 'ws' of git://github.com/jubalh/kakouneMaxime Coste
2015-11-19Keep an empty last line in debug buffer to provide auto scrollingMaxime Coste
2015-11-19Fix building with musl libcKylie McClain
2015-11-19Fix some cases where menu items are truncated needlesslyMaxime Coste
2015-11-19Remove trailing whitespacesMichael Vetter
2015-11-19Implement some generic utilities to convert flags to/from stringsMaxime Coste
2015-11-19Splitting an empty string now returns an empty vectorMaxime Coste
2015-11-18Change autoinfo option to be a flags option, document flags optionsMaxime Coste
Support the value1|value2|value3 syntax for flag options.
2015-11-18Propagate shell context through prompt/onkey/menu commandsMaxime Coste
2015-11-18Respect count argument on searchMaxime Coste
2015-11-18Fix correctly ncurses menu size computations and avoid divide by 0Maxime Coste
2015-11-18Send client dimensions on connection, avoid a race condition.Maxime Coste
Fixes #429
2015-11-17Put count and register normal mode params in the shell contextMaxime Coste
'10:echo %val{count}' will display 10 Fixes #10