Skip to content

Commit

Permalink
Merge branch 'main' into new-keys-to-talon-list
Browse files Browse the repository at this point in the history
  • Loading branch information
nriley committed Sep 7, 2024
2 parents 0ba7634 + d426076 commit 6560353
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 56 deletions.
49 changes: 31 additions & 18 deletions BREAKING_CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,28 +1,41 @@
This file lists known changes to `community` that are likely to have broken existing
functionality. The file is sorted by date with the newest entries up the top.
This file lists known changes to `community` that are likely to have
broken existing functionality. The file is sorted by date with the
newest entries up the top.

Be aware there may be some difference between the date in this file and when the change was
applied given the delay between changes being submitted and the time they were reviewed
and merged.
Be aware there may be some difference between the date in this file
and when the change was applied given the delay between changes being
submitted and the time they were reviewed and merged.

---
* 2024-07-31 Remove commands `"command mode"`, `"dictation mode"` from custom user modes. Note that if you have any custom modes where you want these commands you could add that mode to the context of `command_and_dictation_mode.talon` or copying the command to one of your custom files.
* 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 user namespace actions in favor of the new action/modifier grammar.
* 2024-09-07 If you've updated `community` since 2024-08-31, you may
need to replace `host:` with `hostname:` in the header of
`core/system_paths-<hostname>.talon-list` due to an issue with
automatic conversion from CSV (#1268).
* 2024-07-31 Remove commands `"command mode"`, `"dictation mode"` from
custom user modes. Note that if you have any custom modes where you
want these commands you could add that mode to the context of
`command_and_dictation_mode.talon` or copying the command to one of
your custom files.
* 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 user namespace 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
cut_all, copy_all, paste_all, delete_all
copy_line, paste_line
cut_line_start, copy_line_start, paste_line_start, delete_line_start
cut_line_end, copy_line_end, paste_line_end, delete_line_end
* 2024-05-30 Deprecate 'drop down <user.number_small>' in favor of overridable 'choose' helper
* 2024-01-27 Deprecate '<user.number_string>' command without a spoken prefix like `numb`.
See `numbers.talon` and `numbers_unprefixed.talon.` If in the future you want to still use
unprefixed numbers, you will need to comment out the
`tag(): user.prefixed_numbers` line in your `settings.talon` file.
* 2023-06-06 Deprecate `go ` command for VSCode. Use 'bar marks' instead.
* 2024-05-30 Deprecate 'drop down <user.number_small>' in favor of
overridable 'choose' helper
* 2024-01-27 Deprecate '<user.number_string>' command without a spoken
prefix like `numb`. See `numbers.talon` and
`numbers_unprefixed.talon.` If in the future you want to still use
unprefixed numbers, you will need to comment out the
`tag(): user.prefixed_numbers` line in your `settings.talon` file.
* 2023-06-06 Deprecate `go` command for VSCode. Use 'bar marks' instead.
* 2023-02-04 Deprecate `murder` command for i3wm. Use 'win kill' instead.
* 2022-12-11 Deprecate user.insert_with_history. Just use `user.add_phrase_to_history(text);
insert(text)` instead. See #939.
* 2022-10-01 Large refactoring of code base that moves many files into new locations. No
other backwards-incompatible changes included.
* 2022-12-11 Deprecate user.insert_with_history. Just use
`user.add_phrase_to_history(text); insert(text)` instead. See #939.
* 2022-10-01 Large refactoring of code base that moves many files into
new locations. No other backwards-incompatible changes included.
87 changes: 50 additions & 37 deletions core/system_paths.py
Original file line number Diff line number Diff line change
@@ -1,56 +1,69 @@
"""
This module gives us the list {user.system_paths} and the capture <user.system_path> that wraps
the list to easily refer to system paths in talon and python files. It also creates a file
system_paths.csv in the settings folder so they user can easily add their own custom paths.
system_paths-<hostname>.talon-list in the core folder so the user can easily add their own
custom paths.
"""

import os
from pathlib import Path

from talon import Context, Module, actions, app

from .user_settings import get_list_from_csv
from talon import Context, Module, actions, app, registry

mod = Module()
ctx = Context()

mod.list("system_paths", desc="List of system paths")

user_path = os.path.expanduser("~")


# We need to wait for ready before we can call "actions.path.talon_home()" and
# "actions.path.talon_user()"
def on_ready():
default_system_paths = {
"user": user_path,
"profile": user_path,
"desktop": os.path.join(user_path, "Desktop"),
"desk": os.path.join(user_path, "Desktop"),
"documents": os.path.join(user_path, "Documents"),
"docks": os.path.join(user_path, "Documents"),
"downloads": os.path.join(user_path, "Downloads"),
"music": os.path.join(user_path, "Music"),
"pictures": os.path.join(user_path, "Pictures"),
"videos": os.path.join(user_path, "Videos"),
"talon home": str(actions.path.talon_home()),
"talon user": str(actions.path.talon_user()),
}
# If user.system_paths defined otherwise, don't generate a file
if registry.lists["user.system_paths"][0]:
return

if app.platform == "windows":
one_drive_path = os.path.expanduser(os.path.join("~", "OneDrive"))
hostname = actions.user.talon_get_hostname()
system_paths = Path(__file__).with_name(f"system_paths-{hostname}.talon-list")
if system_paths.is_file():
return

# this is probably not the correct way to check for onedrive, quick and dirty
if os.path.isdir(os.path.expanduser(os.path.join("~", r"OneDrive\Desktop"))):
onedrive_paths = {
"desktop": os.path.join(one_drive_path, "Desktop"),
"documents": os.path.join(one_drive_path, "Documents"),
"one drive": one_drive_path,
"pictures": os.path.join(one_drive_path, "Pictures"),
}
home = Path.home()
talon_home = Path(actions.path.talon_home())

default_system_paths.update(onedrive_paths)
default_system_paths = {
"user": home,
"desktop": home / "Desktop",
"desk": home / "Desktop",
"documents": home / "Documents",
"docks": home / "Documents",
"downloads": home / "Downloads",
"music": home / "Music",
"pictures": home / "Pictures",
"videos": home / "Videos",
"talon home": talon_home,
"talon recordings": talon_home / "recordings",
"talon user": actions.path.talon_user(),
}

ctx.lists["user.system_paths"] = default_system_paths
if app.platform == "windows":
default_system_paths["profile"] = home
onedrive_path = home / "OneDrive"

# this is probably not the correct way to check for OneDrive, quick and dirty
if (onedrive_path / "Desktop").is_dir():
default_system_paths["desktop"] = onedrive_path / "Desktop"
default_system_paths["documents"] = onedrive_path / "Documents"
default_system_paths["one drive"] = onedrive_path
default_system_paths["pictures"] = onedrive_path / "Pictures"
else:
default_system_paths["home"] = home

with open(system_paths, "x") as f:
print("list: user.system_paths", file=f)
print(f"hostname: {hostname}", file=f)
print("-", file=f)
for spoken_form, path in default_system_paths.items():
path = str(path)
if not str.isprintable(path) or "'" in path or '"' in path:
path = repr(path)

print(f"{spoken_form}: {path}", file=f)


@mod.capture(rule="{user.system_paths}")
Expand Down
2 changes: 1 addition & 1 deletion migration_helpers/migration_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class CSVData:
lambda: os.path.join(
"core", f"system_paths-{actions.user.talon_get_hostname()}.talon-list"
),
custom_header=(lambda: f"host: {actions.user.talon_get_hostname()}"),
custom_header=(lambda: f"hostname: {actions.user.talon_get_hostname()}"),
),
CSVData(
"user.search_engine",
Expand Down

0 comments on commit 6560353

Please sign in to comment.