summaryrefslogtreecommitdiff
path: root/src/kakrc
AgeCommit message (Collapse)Author
2013-12-23Make kak more installableMaxime Coste
* Kak relies on the kakrc file to be in ../share/kak/kakrc relative to kak binary rather than in the same directory * Added an install target to the Makefile
2013-03-29kakrc: define colorscheme before sourcing user configMaxime Coste
2013-03-22kakrc: avoid bash featuresMaxime Coste
2012-12-07source user kakrc after autoloads, so that user can override optionsMaxime Coste
2012-11-30Selection: refactoring, move CaptureList to SelectionMaxime Coste
2012-09-17kakrc: use color aliases for cpp and kakrc highlightingMaxime Coste
2012-09-10Load config file in ${XDG_CONFIG_HOME}/kak/kakrc and ↵Maxime Coste
${XDG_CONFIG_HOME}/kak/autload/* Do not autoload files in $kak_runtime/rc, let the user choose restore the runtime command implemented in shell this time.
2012-09-10Remove runtime command, use shell expansion to source files in rc dir.Maxime Coste
With the help of a new kak_runtime env var.
2012-08-08add rc/asciidoc.kak for asciidoc highlightingMaxime Coste
2012-08-07add rc/grep.kak which provides a grep and gjump commandMaxime Coste
2012-08-07add rc/make.kak which provides make and errjump commandsMaxime Coste
2012-08-07new regex highlighter parameters syntax, support per capture highlightMaxime Coste
2012-07-31CommandManager: rework command parserMaxime Coste
a new type of strings is supported inspired by the ruby strings. %<delimiter>content<delimiter>, if opening delimiter is one of ([{<, then closing delimiter is the matching )]}> and balanced delimiters in the string needs not to be escaped, else the closing delimiter is the same as the opening one. shell expansion is available through %sh<delimiter>command<delimiter> syntax. Command flags have been removed, as these strings provide proper nesting support, so now, you can for example do: def command %{ echo %sh{ ls } }
2012-06-27add rc/diff.kak and load in kakrcMaxime Coste
2012-05-29enable global and line numbering in kakrcMaxime Coste
2012-03-08add some highlighting for gitMaxime Coste
2012-01-23adapt rc files to the new hook commandMaxime Coste
2012-01-15split kakrc with filetype specific files in rc/Maxime Coste
cpp highlighting is now specified by rc/cpp.kak.
2012-01-15kakrc: use a hlkakrc highlighter group for kakrc highlighting regexMaxime Coste
2012-01-15kakrc: refactor using lists of commands for hooksMaxime Coste
2012-01-14kakrc: add support for kakrc file highlightingMaxime Coste
2011-12-21kakrc: cleanup trailing whitespaces when quiting insert modeMaxime Coste
2011-12-20Filters: add cleanup_whitespace filterMaxime Coste
this filter remove trailing whitespaces on the previous line when inserting an end-of-line.
2011-12-07Filters: move from buffer to windowMaxime Coste
2011-12-06kakrc: do not highlight the end-of-line in trailing whitespacesMaxime Coste
2011-12-02kakrc: add preserve_indent filter on c++ files and highlight trailing spacesMaxime Coste
2011-11-29Rename Filter to Highlighter to be more explicitMaxime Coste
2011-11-27Add a kakrc file which automatically enables hlcpp on c/c++ filesMaxime Coste