Skip to content

0.7.6 #190

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Dec 24, 2024
Merged

0.7.6 #190

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [

[package]
name = "ox"
version = "0.7.5"
version = "0.7.6"
edition = "2021"
authors = ["Curlpipe <11898833+curlpipe@users.noreply.github.com>"]
description = "A simple but flexible text editor."
Expand Down Expand Up @@ -41,7 +41,10 @@ mlua = { version = "0.10", features = ["lua54", "vendored"] }
error_set = "0.7"
shellexpand = "3.1.0"
synoptic = "2.2.9"
ptyprocess = "0.4.1"
regex = "1.11.1"

# Non-windows dependencies (for terminal)
[target.'cfg(not(target_os = "windows"))'.dependencies]
ptyprocess = "0.4.1"
mio = { version = "1.0.3", features = ["os-ext"] }
nix = { version = "0.29.0", features = ["fs"] }
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ It works best on linux, but macOS and Windows are also supported.
- 📗 Git integration with diffs, stats and more
- 🕸️ Handy web development tools such as Emmet and live HTML viewer
- ⏲️ Productivity tools such as a pomodoro timer and todo list tracker
- 🤖 AI features that will provide with advice and code
- :wrench: A wide number of options for configuration including colours, key bindings and behaviours
- :moon: Ox uses Lua as a configuration language for familiarity when scripting and configuring
- :handshake: A configuration assistant to quickly get Ox set up for you from the get-go
Expand All @@ -67,6 +68,7 @@ It works best on linux, but macOS and Windows are also supported.
- :crossed_swords: Multi-editing features such as multiple cursors and recordable macros
- :window: Splits to view multiple documents on the same screen at the same time
- :file_cabinet: File tree to view, open, create, delete, copy and move files
- :keyboard: Access to terminals within the editor

### Robustness

Expand Down
3 changes: 3 additions & 0 deletions config/.oxrc
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,9 @@ event_mapping = {
["ctrl_w"] = function()
editor:remove_word()
end,
["ctrl_f5"] = function()
editor:run_file()
end,
-- Macros
["ctrl_esc"] = function()
editor:macro_record_stop()
Expand Down
Loading
Loading