* WIP VI wrapper for editor * WIP: block cursor * Create Edit trait, run CI on all feature options * Add prints describing build steps to ci.sh * Custom rendering for Vi editor * Clippy fixes * More clippy fixes * Show clippy results in CI * Fix for Redox * Fix clippy lint * Add vi feature to enable vi-style editor * Add escape to libcosmic text box
18 lines
284 B
Bash
Executable file
18 lines
284 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
echo Run CI script
|
|
./ci.sh
|
|
|
|
echo Build documentation
|
|
cargo doc
|
|
|
|
echo Build all examples
|
|
cargo build --release --all
|
|
|
|
echo Run terminal example
|
|
target/release/terminal
|
|
|
|
echo Run editor-test example
|
|
env RUST_LOG=editor_test=info target/release/editor-test
|