summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-04-21Fix missing include in json_ui.ccMaxime Coste
2016-04-21Allow equality comparison between buffer iterators from differnt buffersMaxime Coste
2016-04-21Fix BufferIterator::difference_type, it should be signedMaxime Coste
2016-04-20prompt: zero password memory after running the command to be slightly more ↵Maxime Coste
secure
2016-04-19Add a -password switch to :prompt to allow for more secure password enteringMaxime Coste
Fixes #660
2016-04-17Add support for env var name completionMaxime Coste
Fixes #659
2016-04-17Use common completion system for OptionManager::complete_option_nameMaxime Coste
2016-04-16Remove iterator based regex constructorMaxime Coste
2016-04-13Fix mistake in input_handler.ccMaxime Coste
2016-04-13Fix support for macro being recorded and replay during :exec (non draft)Maxime Coste
2016-04-13Fix modified range computation when erasing multiple times past current ↵Maxime Coste
buffer end Fixes #654
2016-04-12ShellManager: do not open child stdin if there is no data to write to itMaxime Coste
Fixes #383
2016-04-11Use padding face on the whole lineMaxime Coste
2016-04-11Remove padding control options from ncurses uiMaxime Coste
2016-04-11Merge remote-tracking branch 'lenormf/buffer-padding'Maxime Coste
2016-04-09Use a specific startup_error exception type to get a nicer messageMaxime Coste
Fixes #424
2016-04-09Fix is_word ambiguous overloadMaxime Coste
2016-04-09Small style tweak, we know buffer begin coord is always {0,0}Maxime Coste
2016-04-09Merge branch 'expose-cursor-byte-offset' of git://github.com/pauldub/kakouneMaxime Coste
2016-04-09fix word completion taking the words being edited as candidatesMaxime Coste
2016-04-09Pass the selection list to insert mode completer functionsMaxime Coste
2016-04-08expose cursor_byte_offset env variablePaul d'Hubert
Update README.asciidoc
2016-04-07Only offer directories when completing :cd argumentsMaxime Coste
Refactor code in file.cc, avoid many double stat when searching commands Fixes #646
2016-04-04Tweak RankedMatch behaviourMaxime Coste
2016-04-04Give priority to lower case in RankedMatchMaxime Coste
2016-04-04Refactor wrap_lines and add some unit testsMaxime Coste
2016-04-04Tweak categorize(Codepoint) implementationMaxime Coste
2016-04-04Use a specific option type completions for insert completionMaxime Coste
Fix escaping in jedi.kak as well
2016-03-31Document the null registerMaxime Coste
2016-03-31Make DynamicRegister statically dispatch to its functionMaxime Coste
2016-03-30Replace menu and info when they actually movedMaxime Coste
Previous logic worked only when the buffer moved in the window, but not if some highlighter (like line numbering or flag lines) moved the text around.
2016-03-30Fix spaces_to_tabs implementation accessing past endMaxime Coste
Fixes #643
2016-03-29RankedMatch constructor handles empty query just fineMaxime Coste
2016-03-28Tweak subsequence_match_smart_caseMaxime Coste
2016-03-28Use manual lexicographic comparison in RankedMatch::operator<Maxime Coste
2016-03-28Uniquify candidates in -shell-candidates modeMaxime Coste
2016-03-25Use UsedLetters for shell-candidates filteringMaxime Coste
2016-03-25Move UsedLetters with RankedMatchMaxime Coste
2016-03-25Add a SplitView container viewMaxime Coste
2016-03-24Tweak implementation of subsequence_match_smart_caseMaxime Coste
Remove use of utf8 iterators and use directly utf8 functions
2016-03-24Optimize split implementation, avoid growing strings char by charMaxime Coste
2016-03-24Small code tweakMaxime Coste
2016-03-24Correctly handle temporaries in container viewsMaxime Coste
Move temporaries into the view itself and keep a reference on non temporaries
2016-03-24Fix uninitialized value in RankedMatchMaxime Coste
2016-03-24Add an alternative -shell-candidates shell completion supportMaxime Coste
-shell-candidates use a shell script that returns all the candidates and then sort them using Kakoune ranked matches system instead of delegating the whole completion to the shell script (as shell-completion does)
2016-03-24Support getting back to original prefix with tab/shift-tab in promptsMaxime Coste
Fixes #124
2016-03-24Remove forced redraw in ncurses uiMaxime Coste
2016-03-24Add completion support for alias/unalias commandsMaxime Coste
2016-03-23Support mosue event in key_to_strMaxime Coste
2016-03-22User mappings and :exec are always executed in normal modeMaxime Coste
Fix #551