rustyline-async/.patchy/config.toml
2025-06-21 00:43:25 +01:00

73 lines
1.8 KiB
TOML

# Main github repository to fetch from.
# This is going to be our base, into which we merge patches and pull requests.
#
# Examples
#
# repo = "helix-editor/helix"
# repo = "microsoft/vscode"
repo = "zyansheep/rustyline-async"
# The main repository's branch
#
# Examples
#
# remote-branch = "master"
# remote-branch = "main"
#
# The above always fetch the latest commit.
# -> To use a specific commit, use the following syntax:
# remote-branch = "<branch> @ <hash-of-commit>"
#
# so for example:
#
# remote-branch = "master @ fccc58957eece10d0818dfa000bf5123e26ee32f"
remote-branch = "main @ 8ada04dc4f37a96e80996bfe9f96942c233962ed" # 0.4.6
# Branch which patchy will use to do all of its work on
local-branch = "continuwuity-changes"
# list of pull requests numbers which you would like to merge into the repository and branch you have specified previously
#
# Examples
#
# pull-requests = [ "12254", "10000", "8145" ]
#
# The above always fetch the latest commit for each pull request.
#
# To use a specific commit, use the following syntax:
# "<pull-request-number> @ <hash-of-commit>"
#
# so for example:
#
# pull-requests = [
# "12254",
# "10000 @ a556aeef3736a3b6b79bb9507d26224f5c0c3449",
# "8145 @ 840cb7e9982699ff107d0577691b5db9806b3b66"
# ]
pull-requests = [
]
# Optional: A list of patches to apply
#
# A patch allows you to do specify custom commits and not have to rely on there being a pull request for that change
#
# You can generate patches from a commit with: `patchy gen-patch <commit-hash>`.
# See `patchy gen-patch --help` for more info.
#
# Examples
#
# With the below config, patchy will look for the following files:
# - `.patchy/my-patch123.patch`
# - `.patchy/another-patch.patch`
# - `.patchy/1234.patch`
#
# patches = [ "my-patch123", "another-patch", "1234" ]
patches = [
"0001-add-event-for-ctrl",
"0002-add-tab-completion-callback"
]