Skip to content
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

Refactor/rename editor to lilly #306

Merged
merged 3 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix: change back accidental rename of editor in license header
  • Loading branch information
tauraamui committed Feb 7, 2025
commit 92d8815a9064a442458ea9c62fae94902f169094
2 changes: 1 addition & 1 deletion src/file_finder_modal_test.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2024 The Lilly Lilly contributors
// Copyright 2024 The Lilly Editor contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -135,7 +135,7 @@
"./src/project/lib/database/connection.v"
]

mut lilly := Lilly{

Check notice on line 138 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.inactive_buffer_finder_modal` must be initialized

Check notice on line 138 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.todo_comments_finder_modal` must be initialized
file_finder_modal: mock_modal
}

Expand Down Expand Up @@ -165,13 +165,13 @@
}

assert mock_modal.current_selection == 0
mock_modal.on_key_down(draw.Event{utf8: "d"}, mut Lilly{})

Check notice on line 168 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.file_finder_modal` must be initialized

Check notice on line 168 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.inactive_buffer_finder_modal` must be initialized

Check notice on line 168 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.todo_comments_finder_modal` must be initialized
assert mock_modal.current_selection == 0

mock_modal.on_key_down(draw.Event{code: .down}, mut Lilly{})

Check notice on line 171 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.file_finder_modal` must be initialized

Check notice on line 171 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.inactive_buffer_finder_modal` must be initialized

Check notice on line 171 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.todo_comments_finder_modal` must be initialized
assert mock_modal.current_selection == 1

mock_modal.on_key_down(draw.Event{utf8: "r"}, mut Lilly{})

Check notice on line 174 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.file_finder_modal` must be initialized

Check notice on line 174 in src/file_finder_modal_test.v

View workflow job for this annotation

GitHub Actions / unit_tests

interface field `Lilly.inactive_buffer_finder_modal` must be initialized
assert mock_modal.current_selection == 0
}

Expand Down
2 changes: 1 addition & 1 deletion src/lilly_test.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2024 The Lilly lilly.contributors
// Copyright 2024 The Lilly Editor.contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/view_keybinds_test.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2024 The Lilly lilly contributors
// Copyright 2024 The Lilly Editor contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
Loading