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
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: daily
time: "08:00"
open-pull-requests-limit: 2
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
- [x] Lock screen: application lock screen and automatic lock on idle timeout
- [x] Static suggestions: preconfigured static command suggestions with wildcard support

### Roadmap 🏁

- [ ] Support Lua scripting for more customizable scenarios
- [ ] Support workflows
- [ ] ...

### Quick Start

#### Play cast files
Expand Down
6 changes: 0 additions & 6 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@
- [x] 锁屏:应用锁屏与超时自动锁定
- [x] 静态提示:基于预配置的静态命令提示,支持通配符

### 路线 🏁

- [ ] 支持 Lua 脚本,支持更多场景的可定制化
- [ ] 支持工作流
- [ ] ...

### 快速上手

#### 回放 cast
Expand Down
54 changes: 0 additions & 54 deletions assets/shell/termua-osc133.bash

This file was deleted.

56 changes: 0 additions & 56 deletions assets/shell/termua-osc133.ps1

This file was deleted.

42 changes: 0 additions & 42 deletions assets/shell/termua-osc133.zsh

This file was deleted.

17 changes: 0 additions & 17 deletions crates/alacritty_terminal/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,6 @@ pub enum Event {

/// Child process exited.
ChildExit(ExitStatus),

/// OSC 133 shell integration event.
///
/// This is used by downstream UIs to build "command blocks".
Osc133 {
payload: String,
stable_row: i64,
cursor_col: usize,
},
}

impl Debug for Event {
Expand All @@ -87,14 +78,6 @@ impl Debug for Event {
Event::Bell => write!(f, "Bell"),
Event::Exit => write!(f, "Exit"),
Event::ChildExit(status) => write!(f, "ChildExit({status:?})"),
Event::Osc133 {
payload,
stable_row,
cursor_col,
} => write!(
f,
"Osc133(payload={payload:?}, stable_row={stable_row}, cursor_col={cursor_col})"
),
}
}
}
Expand Down
Loading
Loading