Kakoune-kotlin.kak a plain *.kak filetype

No worries, it’s nice to have someone take an interest and it has spurred me on to build it better myself. Give this a run for some fun.

New update to kakoune-kotlin.kak are auto-completers for import statements.
rc/kotlinInheritanceHierarchy.kak

Out-Of-The-Box

Lenormf’s kakoune welcome mat for users.

# Allow cycling to the next/previous candidate with <tab> and <s-tab> when completing a word

hook global InsertCompletionShow .* %{
  try %{
    execute-keys -draft 'h<a-K>\h<ret>'
    map window insert <tab> <c-n>
    map window insert <s-tab> <c-p>
  }
}

hook global InsertCompletionHide .* %{
  unmap window insert <tab> <c-n>
  unmap window insert <s-tab> <c-p>
}

What are Completers?

Bye all :wave: .