Skip to content

Commit

Permalink
Merge pull request #190 from curlpipe/0.7.6
Browse files Browse the repository at this point in the history
0.7.6
  • Loading branch information
curlpipe authored Dec 24, 2024
2 parents fdddabb + a280f47 commit 4a2ef25
Show file tree
Hide file tree
Showing 18 changed files with 611 additions and 87 deletions.
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

0 comments on commit 4a2ef25

Please sign in to comment.