Why Vim users will love the Kakoune text editor

This editor may be reminiscent of Vim, but it offers plenty of its own unique functions and features.
56 readers like this.
Typewriter keys

Original photo by mshipp. Modified by Rikki Endsley. CC BY-SA 2.0.

The Kakoune text editor takes inspiration from Vi. With a minimalistic interface, short keyboard shortcuts, and separate editing and insert modes, it does look and feel a lot like Vi at first. However, the Kakoune editor has its own unique style both in design and function and is better considered its own editor rather than yet another Vim.

Install

On Linux and BSD, you can install Kakoune from your distribution’s software repository or ports tree. For example, on Fedora, CentOS, or RHEL:

$ sudo dnf install kakoune

On Debian, Ubuntu, or similar:

$ sudo apt install kakoune

On macOS, you can use Homebrew:

$ brew install kakoune

Alternatively, you can build it from source code.

The command to start Kakoune is kak. You can start Kakoune empty, or you can include a file name for it to open upon launch:

$ kak example.txt

Using Kakoune

When you launch Kakoune (without a file name), it opens a mostly empty buffer in your terminal, except for a small status bar at the bottom of the windows. Like Vim, Kakoune starts in "normal" mode, which accepts key presses as commands and does not enter text into the buffer. To enter insert mode, you must press either i (for insert) or a (for append).

While in insert mode, Kakoune acts mostly like any other editor. You type on your keyboard, and the characters you type show up in the buffer. While in insert mode, you can use the arrow keys to navigate through the buffer.

Normal mode

In normal mode, you can issue navigation and text editing commands. This is the most obvious borrowed feature from the Vi tradition. Editing commands include functions to copy, cut (or "yank," in traditional Unix editing vernacular), and paste words and lines, undo, transform characters to upper or lower case, and so on. Here are some of the basics:

  • d: yank and delete current selection ("cut" in modern terminology)
  • c: yank and delete current selection and enter insert mode
  • Esc+Alt+d: delete current selection
  • y: yank selection
  • p: paste
  • <: unindent selected lines
  • u: undo
  • U: redo
  • `: transform to lower case
  • ~: transform to upper case

Selection

In Kakoune, your cursor is a single-character mobile selection. Unless you extend your selection, any commands affecting a selection apply to just your cursor. For instance, if your cursor is hovering over the letter n, then the yank command (c in normal mode) copies the letter n to your clipboard, and the paste command (p in normal mode) pastes the letter n into the buffer.

The easiest way to extend a selection from a single character is to enter normal mode and press the Shift key while moving your cursor with the arrow keys. There are, however, several methods of extending a selection based on certain criteria. For instance, Alt+l extends a selection region from your cursor to the end of the current line.

Full documentation is available at https://github.com/mawww/kakoune/blob/master/README.asciidoc.

Functions

In addition to these basic interactions, you can also issue commands to invoke the built-in functions of Kakoune. To access the Kakoune’s command line, type : in normal mode. From the command line, you can issue commands, including the essential edit command to open a file, the write command to save your buffer to a file, and of course, quit to exit the application.

There are many more functions, including special options for specific programming languages and file formats, an option to use the Ranger file navigator to browse your file system, change your color theme, search and replace text, and much more.

Kakoune

Try Kakoune

If you’re an experienced Vim user or even someone with just a passing competency, you might find Kakoune disorienting at first. It’s just similar enough to Vim to lull you into a false sense of familiarity—everything works exactly like Vim until it’s drastically different. However, if you’re new to Vim-like editors, or you’re a Vim user looking for a new challenge, then Kakoune could be an ideal editor for you.

Try it for yourself!

What to read next

7 reasons to love Vim

When I started using the vi text editor, I hated it. I thought it was the most painful and counter-intuitive editor ever designed. But I'd decided I had to learn the thing…

Why I love Emacs

Emacs isn't a mere text editor; it places you in control and allows you to solve nearly any problem you encounter.

Seth Kenlon
Seth Kenlon is a UNIX geek, free culture advocate, independent multimedia artist, and D&D nerd. He has worked in the film and computing industry, often at the same time.

1 Comment

You forgot to mention th best feature: clippy! :P

I'm not a fan of vi but I have to admin that Kakoune looks intriguing.

Thanks for writing up this series :)

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.