-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Clipboard keys #5352
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
Merged
Merged
Clipboard keys #5352
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4890c79
Clipboard keys
willmcgugan 65c213c
help to quit
willmcgugan 4ea1044
test for cut n paste
willmcgugan 49d97dc
changelog
willmcgugan 130e8c7
test for textarea cut/copy/paste
willmcgugan b7c0215
changelog
willmcgugan e58141c
read only exception
willmcgugan 5f5a383
snapshots
willmcgugan a0c166c
changelog
willmcgugan 004a62e
fix key table
willmcgugan d040b64
update docstring
willmcgugan e723ca2
changelog
willmcgugan b2bc4c9
simplify
willmcgugan 1e6f331
simplify paste
willmcgugan 8a09562
no need to sort
willmcgugan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| from textual.app import App, ComposeResult | ||
| from textual.widgets import Input | ||
|
|
||
|
|
||
| class InputApp(App): | ||
| def compose(self) -> ComposeResult: | ||
| yield Input() | ||
|
|
||
|
|
||
| async def test_cut(): | ||
| """Check that cut removes text and places it in the clipboard.""" | ||
| app = InputApp() | ||
| async with app.run_test() as pilot: | ||
| input = app.query_one(Input) | ||
| await pilot.click(input) | ||
| await pilot.press(*"Hello, World") | ||
| await pilot.press("left", "shift+left", "shift+left") | ||
| await pilot.press("ctrl+x") | ||
| assert input.value == "Hello, Wod" | ||
| assert app.clipboard == "rl" | ||
|
|
||
|
|
||
| async def test_copy(): | ||
| """Check that copy places text in the clipboard.""" | ||
| app = InputApp() | ||
| async with app.run_test() as pilot: | ||
| input = app.query_one(Input) | ||
| await pilot.click(input) | ||
| await pilot.press(*"Hello, World") | ||
| await pilot.press("left", "shift+left", "shift+left") | ||
| await pilot.press("ctrl+c") | ||
| assert input.value == "Hello, World" | ||
| assert app.clipboard == "rl" | ||
|
|
||
|
|
||
| async def test_paste(): | ||
| """Check that paste copies text from the local clipboard.""" | ||
| app = InputApp() | ||
| async with app.run_test() as pilot: | ||
| input = app.query_one(Input) | ||
| await pilot.click(input) | ||
| await pilot.press(*"Hello, World") | ||
| await pilot.press( | ||
| "shift+left", "shift+left", "shift+left", "shift+left", "shift+left" | ||
| ) | ||
| await pilot.press("ctrl+c") | ||
| assert input.value == "Hello, World" | ||
| assert app.clipboard == "World" | ||
| await pilot.press("ctrl+v") | ||
| assert input.value == "Hello, World" | ||
| await pilot.press("ctrl+v") | ||
| assert input.value == "Hello, WorldWorld" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.