Lightning-fast and Powerful Code Editor written in Rust
Go to file
Dongdong Zhou 49506cf5cd bump version 2022-02-28 11:21:54 +00:00
.github/workflows inital support to input ssh remote host 2022-02-03 14:10:15 +00:00
core bump version 2022-02-28 11:21:54 +00:00
defaults new way to split 2022-02-07 20:54:20 +00:00
docs Update why-lapce.md 2021-10-08 13:56:29 +01:00
extra update screenshot 2022-02-25 12:02:37 +00:00
icons put settings icon to title 2022-02-24 13:22:07 +00:00
proxy bump version 2022-02-28 11:21:54 +00:00
rpc clean up 2022-02-16 16:47:36 +00:00
.gitignore ignore submodule changes 2022-01-17 14:41:03 +00:00
.rustfmt.toml lsp plugin change 2020-10-16 16:40:55 +01:00
Cargo.lock bump version 2022-02-28 11:21:54 +00:00
Cargo.toml bump version 2022-02-28 11:21:54 +00:00
LICENSE Create LICENSE 2021-10-06 17:13:56 +01:00
Makefile inital support to input ssh remote host 2022-02-03 14:10:15 +00:00
README.md Update README.md 2022-02-25 20:19:47 +00:00

README.md


Lapce

Lightning-fast and Powerful Code Editor written in Rust

chat

Lapce is written in pure Rust, with UI in Druid. It's using Xi-Editor's Rope Science for text editing, and using Wgpu for rendering.

Features

  • Modal Editing (Vim like) support as first class citizen (can be turned off as well)
  • Built in LSP support
  • Built in remote development support (inspired by VSCode Remote Development)
  • Plugin can be written in programming languages that can compile to WASI (C, Rust, AssemblyScript)
  • Built in terminal

Build from source

Install the Rust compiler with rustup

  1. Install rustup.rs.

Dependencies

Ubuntu

sudo apt-get install cmake pkg-config libfreetype6-dev libfontconfig1-dev libxcb-xfixes0-dev libxkbcommon-dev

Building

cargo build --release

The exectuable will be available at target/release/lapce

Feedback