mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-25 13:16:11 +03:00
core: remove completed todos
This commit is contained in:
@ -156,7 +156,6 @@ const Mouse = struct {
|
|||||||
|
|
||||||
/// The point at which the left mouse click happened. This is in screen
|
/// The point at which the left mouse click happened. This is in screen
|
||||||
/// coordinates so that scrolling preserves the location.
|
/// coordinates so that scrolling preserves the location.
|
||||||
//TODO(paged-terminal)
|
|
||||||
left_click_pin: ?*terminal.Pin = null,
|
left_click_pin: ?*terminal.Pin = null,
|
||||||
left_click_screen: terminal.ScreenType = .primary,
|
left_click_screen: terminal.ScreenType = .primary,
|
||||||
|
|
||||||
@ -1054,9 +1053,6 @@ fn setSelection(self: *Surface, sel_: ?terminal.Selection) !void {
|
|||||||
const prev_ = self.io.terminal.screen.selection;
|
const prev_ = self.io.terminal.screen.selection;
|
||||||
try self.io.terminal.screen.select(sel_);
|
try self.io.terminal.screen.select(sel_);
|
||||||
|
|
||||||
// TODO(paged-terminal)
|
|
||||||
if (true) return;
|
|
||||||
|
|
||||||
// Determine the clipboard we want to copy selection to, if it is enabled.
|
// Determine the clipboard we want to copy selection to, if it is enabled.
|
||||||
const clipboard: apprt.Clipboard = switch (self.config.copy_on_select) {
|
const clipboard: apprt.Clipboard = switch (self.config.copy_on_select) {
|
||||||
.false => return,
|
.false => return,
|
||||||
@ -2625,7 +2621,6 @@ pub fn cursorPosCallback(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Convert to points
|
// Convert to points
|
||||||
// TODO(paged-terminal)
|
|
||||||
const screen = &self.renderer_state.terminal.screen;
|
const screen = &self.renderer_state.terminal.screen;
|
||||||
const pin = screen.pages.pin(.{
|
const pin = screen.pages.pin(.{
|
||||||
.viewport = .{
|
.viewport = .{
|
||||||
|
Reference in New Issue
Block a user