Skip to content

Commit

Permalink
Deprecate lend and bend commands (#1514)
Browse files Browse the repository at this point in the history
Fixes #1450

---------

Co-authored-by: Nicholas Riley <com-github@sabi.net>
  • Loading branch information
AndreasArvidsson and nriley authored Aug 3, 2024
1 parent 2d2ddeb commit c14c380
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions BREAKING_CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ applied given the delay between changes being submitted and the time they were r
and merged.

---
* 2024-07-30 Deprecate `lend` and `bend` commands in favor of `go line end | tail` and `go line start | head`.
* 2024-07-28 Removed the following actions in favor of the new action/modifier grammar.
https://github.com/talonhub/community/blob/37a8ebde90c8120a0b52555030988d4f54e65159/core/edit/edit.talon#L3
cut_word, copy_word, paste_word
Expand Down
8 changes: 6 additions & 2 deletions tags/line_commands/line_commands.talon
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
tag: user.line_commands
-
#this defines some common line commands. More may be defined that are ide-specific.
lend: edit.line_end()
bend: edit.line_start()
lend:
user.deprecate_command("2024-07-30", "lend", "go line end | tail")
edit.line_end()
bend:
user.deprecate_command("2024-07-30", "bend", "go line start | head")
edit.line_start()
go <number>: edit.jump_line(number)
go <number> end:
edit.jump_line(number)
Expand Down

0 comments on commit c14c380

Please sign in to comment.