Lightning-fast and Powerful Code Editor written in Rust
Go to file
Jiangbin Zhao 7f1903249a address PR review feedbacks
- fix calculation of the new view center

- add default key bindings
2022-05-13 11:44:16 -07:00
.github/workflows Add cargo fmt check for PRs. 2022-05-09 14:47:20 +02:00
defaults address PR review feedbacks 2022-05-13 11:44:16 -07:00
docs (docs): increase readability 2021-12-14 05:25:38 -06:00
extra bump version 2022-03-24 17:47:46 +00:00
icons search box 2022-03-23 17:44:34 +00:00
lapce-core implement top_of_window and bottom_of_window 2022-05-09 18:04:53 -07:00
lapce-data implement top_of_window and bottom_of_window 2022-05-09 18:04:53 -07:00
lapce-proxy new way to check if buffer is pristine 2022-05-09 21:10:24 +01:00
lapce-rpc new way to check if buffer is pristine 2022-05-09 21:10:24 +01:00
lapce-ui address PR review feedbacks 2022-05-13 11:44:16 -07: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
CONTRIBUTING.md Fixed Spelling errors in CONTRIBUTING.md 2022-04-08 07:55:44 -04:00
Cargo.lock update file explorer when file created/removed 2022-05-08 21:55:25 +01:00
Cargo.toml Merge branch 'master' into release 2022-04-25 09:53:33 +02:00
LICENSE Create LICENSE 2021-10-06 17:13:56 +01:00
Makefile update window origin in real time 2022-05-04 10:09:13 +01:00
README.md Added fixes from #37 and fixed 'Join' capitalization 2022-04-08 11:38:17 -04:00

README.md


Lapce

Lightning-fast and Powerful Code Editor written in Rust


Lapce is written in pure Rust, with the UI in Druid. It uses Xi-Editor's Rope Science for text editing, and the Wgpu Graphics API for rendering. More information can be found on the website.

Features

  • Modal Editing (Vim like) support as first class citizen (can be turned off as well)
  • Built-in LSP (Language Server Protocol) support to give you code intelligence like code completion, diagnostics and code actions etc.
  • Built-in remote development support (inspired by VSCode Remote Development) for a seamless "local" experience, benefiting from the full power of the remote system.
  • Plugins can be written in programming languages that can compile to the WASI format (C, Rust, AssemblyScript)
  • Built-in terminal, so you can execute commands in your workspace, without leaving Lapce.

Contributing

The guidelines about contributing to Lapce can be found in CONTRIBUTING.md.

Build from source

Install the Rust compiler with rustup

  1. Install rustup.rs.

Dependencies

Ubuntu

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

Building

cargo build --release

The compiled executable will be available at target/release/lapce

Feedback