Back to Spacevim

SpaceVim lang#dart layer

docs/layers/lang/dart.md

2.4.02.8 KB
Original Source

Available Layers >> lang#dart

<!-- vim-markdown-toc GFM --> <!-- vim-markdown-toc -->

Description

This layer is for Dart development.

Features

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

Install

Layer

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

toml
[[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:

sh
pub global activate dart_repl

Layer options

  • dart_sdk_path: Set the path of dart sdk, by default, it is ''.

Key bindings

Inferior REPL process

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

Send code to inferior process commands:

Key BindingsDescriptions
SPC l s bsend buffer and keep code buffer focused
SPC l s lsend line and keep code buffer focused
SPC l s ssend selection text and keep code buffer focused

Running current script

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

Code formatting

The code formatting is provided by the format layer, and it will run dartfmt asynchronously.

Key BindingsDescriptions
SPC b fformat current buffer

Flutter integration

When editing a dart file, the following key bindings are available for running flutter commands.

Key bindingsDescriptions
SPC l f DDisplay flutter doctor result
SPC l f ELaunch to a flutter emulators id
SPC l f dDisplay flutter devices result
SPC l f eDisplay flutter emulators list
SPC l f lReload flutter app
SPC l f rRun flutter run command
SPC l f sRestart flutter app
SPC l f qQuit current flutter process