1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:30:04 +08:00
SpaceVim/docs/layers/lang/dart.md
2019-02-03 20:51:00 +08:00

2.5 KiB

title description
SpaceVim lang#dart layer This layer is for Dart development, provide autocompletion, syntax checking, code format for Dart file.

Available Layers >> lang#dart

Description

This layer is for Dart development.

Features

  • code completion
  • syntax checking
  • code formatting
  • REPL
  • code runner

Install

Layer

To use this configuration layer, update custom configuration file with:

[[layers]]
  name = "lang#dart"

Syntax checking && Code formatting

To enable syntax checking and code formatting in spacevim, you need to install dart sdk.

Install dart-repl

You need to install the dart_repl via pub, pub is a build-in package manager in dart-sdk:

pub global activate dart_repl

Key bindings

Inferior REPL process

Start a dart.repl inferior REPL process with SPC l s i.

Send code to inferior process commands:

Key Bindings Descriptions
SPC l s b send buffer and keep code buffer focused
SPC l s l send line and keep code buffer focused
SPC l s s send selection text and keep code buffer focused

Running current script

To running a ruby script, you can press SPC l r to run current file without loss focus, and the result will be shown in a runner buffer.

Code formatting

Key Bindings Descriptions
SPC b f format current buffer

Screenshots

code formatting:

format-dart-file-in-spacevim

auto completion:

complete-dart-in-spacevim

code runner:

dart-runner-in-spacevim