summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-08-19Default register is not handled by the Normal input mode.Maxime Coste
Normal input mode will just pass 0 as the reg if it was not specified by the user, its yank/paste functions that should determine 0 means use '"' register.
2015-08-18Rename Disableable to more general NestedBoolMaxime Coste
A NestedBool can be set multiple times, and will be considered false only when unset the same number.
2015-08-18Smaller sizeof for in place stringsMaxime Coste
2015-08-18Be more explicit about paramater parsing errorMaxime Coste
2015-08-18Cleanup key to codepoint conversionMaxime Coste
Fixes #378 Fixes #365
2015-08-16Cleanup mouse handling a littleMaxime Coste
2015-08-15Fixing minor typoZak Greant
s/prevous/previous/
2015-08-14Tweak notify_fatal_error message box title, might not be an assert failedMaxime Coste
2015-08-14Clamp m_anchor in mouse handler, nothing garantees that it is still validMaxime Coste
Fixes #350
2015-08-13More performant escape/unescapeMaxime Coste
2015-08-12Detect face being aliased to itselfMaxime Coste
Fixes #374
2015-08-12Try to fix compilation on travisMaxime Coste
2015-08-11Display auto info on register insertion/explicit insert completionMaxime Coste
2015-08-11Handle registers insert/explicit completion with a nested on_next_key modeMaxime Coste
2015-08-11Ensure the command exist before adding an aliasMaxime Coste
Fixes #371
2015-08-10Add an unset command to remove an option value (falling back to parent)Maxime Coste
unset is not applicable to global scope.
2015-08-10Move option docstring obtention to OptionRegistryMaxime Coste
2015-08-10Move option name completion to the OptionRegistryMaxime Coste
Option names are the same for every option manager.
2015-08-09clamp coordinates find_buffer_coordMaxime Coste
2015-08-08Use a struct rather than a std::pair for InputHandler::InsertionMaxime Coste
2015-08-06ensure a buffer is not referenced a second time, just before actually ↵Maxime Coste
deleting it It can happen in certain case that a buffer gets referenced after it gets moved to the trash, for example when it gets deleted during its construction (due to BufCreate hook for example).
2015-08-04Support flags getting modified by hooks at buffer creationMaxime Coste
Fixes #361
2015-08-03Enable more invariant checking in selection listsMaxime Coste
2015-07-30Fix command parsing bugMaxime Coste
Fixes #347
2015-07-29Merge remote-tracking branch 'lenormf/autoinfo_number'Maxime Coste
2015-07-29Add the 'n' flag to the autoinfo popup windowFrank LENORMAND
2015-07-28Use forward declaration instead of include in commands.hhMaxime Coste
2015-07-27Small formatting fixMaxime Coste
2015-06-26Always inline Allocator::construct/destroyMaxime Coste
2015-07-25Tweak regex constructor callsMaxime Coste
2015-07-25Avoid appending chars one by one in some parsing functions in CommandManagerMaxime Coste
2015-07-25CPPFLAGS should use to specify flags for C pre-processorTSUYUSATO Kitsune
2015-07-24Fix warningMaxime Coste
2015-07-23Disable notifications when disabling an option temporarlyMaxime Coste
2015-07-23Rewrite select_lines and trim_partial_linesMaxime Coste
Fixes #338 for real (I hope)
2015-07-23Improve column highlighter to cooperate better with other highlightersMaxime Coste
Fixes #268
2015-07-23fix crash in trim_partial_linesMaxime Coste
Fixes #338
2015-07-22Avoid copying selection before the first lineMaxime Coste
2015-07-22Fix potential crashMaxime Coste
2015-07-22Add /usr/include/ncursesw in the include dirs listMaxime Coste
2015-07-22Style tweak in client.ccMaxime Coste
2015-07-20Remove -rdynamic from cygwin LDFLAGSMaxime Coste
2015-07-15Add support for FocusIn/FocusOut events from UIMaxime Coste
2015-07-14Merge remote-tracking branch 'ekie/makefile_fix'Maxime Coste
2015-07-14Transform boost/std regex_error to Kakoune::regex_error at Regex constructionMaxime Coste
Fixes #318
2015-07-14Install color schemesEike Plack
2015-07-14Only allow 'sane' register namesMaxime Coste
Fixes #316
2015-07-14Add missing support for Codepoint in formatMaxime Coste
2015-07-13Formatting tweakMaxime Coste
2015-07-13Use different variable for pipe command in/out textMaxime Coste