Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 763 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 763 Bytes

kakoune-cargo

Cargo compiler support for kakoune Adds syntax highlighting, on errors/warnings to jump to file, and supports make-(next|previous)-error

Install

Currently requires kakoune-mouvre in order to support non-wrapping next/previous errors.

Place in autoload/ or use plug.kak.

Place the following in your rc or autoload:

hook -group make-rust global WinSetOption filetype=rust %[
    set-option window makecmd cargo
    set-option global compiler cargo
]

Usage

Hover over an error or warning section and press to jump to the given file/line/column entry Use the commands make-next-error and make-previous error to jump between errors