Skip to content
Merged
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
1 change: 1 addition & 0 deletions .claude/scheduled_tasks.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"sessionId":"044a4cde-2737-40a2-bf84-2dfeec22370d","pid":22026,"procStart":"Mon Jun 29 01:38:34 2026","acquiredAt":1782711515915}
12 changes: 12 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"permissions": {
"allow": [
"Bash(*)",
"Read(*)",
"Write(*)",
"Edit(*)",
"Monitor(*)",
"WebFetch(*)"
]
}
}
30 changes: 15 additions & 15 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resolver = "2"
edition = "2024"
license = "MIT"
repository = "https://github.com/kromych/ruf4"
rust-version = "1.93"
rust-version = "1.96"

[profile.release]
codegen-units = 1
Expand Down
16 changes: 5 additions & 11 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ If you are a developer, [here](./ReleaseFlow.md) are the gory details and notes
| F2 | Save settings |
| F9 | Focus menubar |
| F10 | Quit (with confirmation) |
| F12 | Reopen last shell output |
| Any letter | Activate command line |

### macOS alternatives
Expand Down Expand Up @@ -145,15 +144,10 @@ Commands run in the active panel's directory.
| Escape | Cancel |
| Backspace | Delete character |

### Shell output

After running a command, the output is shown in a scrollable dialog.
Press F12 to reopen the last output at any time.

| Key | Action |
|-----|--------|
| Ctrl+C | Copy output to clipboard |
| Esc / Enter | Close |
Commands run in the foreground with the terminal handed back to them, so
interactive programs (a shell, `python`, `vim`, `less`) work normally. The
panel display is restored when the command exits; press Enter at the prompt to
return.

### Dialogs

Expand All @@ -170,7 +164,7 @@ Most confirmation dialogs respond to:
- Click a panel to make it active
- Click a file entry to select it
- Double-click to enter a directory or open a file
- Scroll wheel to navigate
- Scroll wheel to navigate; over the quick view panel it scrolls the preview
- Click the function key bar at the bottom for quick access

### Clicking around
Expand Down
4 changes: 3 additions & 1 deletion crates/lsh/src/compiler/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,9 @@ impl TryFrom<u32> for HighlightKind {{
_ = writeln!(
output,
" Language {{ id: {:?}, name: {:?}, entrypoint: {} }},",
ep.name, ep.display_name, ep.address
ep.name.replace('_', "-"),
ep.display_name,
ep.address,
);
}
output.push_str("];\n");
Expand Down
2 changes: 1 addition & 1 deletion crates/lsh/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Welcome to Leonard's Syntax Highlighter (LSH), otherwise known as
//! Welcome to the Lightweight Syntax Highlighter (LSH), otherwise known as
//! Leonard's Shitty Highlighter, which is really what it is.
//!
//! ## Architecture
Expand Down
2 changes: 1 addition & 1 deletion crates/ruf4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ruf4"
version = "0.0.5"
version = "0.1.0"
description = "A dual-panel file commander"

edition.workspace = true
Expand Down
Loading
Loading