forge-autoloads.el (11693B)
1 ;;; forge-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- 2 ;; Generated by the `loaddefs-generate' function. 3 4 ;; This file is part of GNU Emacs. 5 6 ;;; Code: 7 8 (add-to-list 'load-path (or (and load-file-name (file-name-directory load-file-name)) (car load-path))) 9 10 11 12 ;;; Generated autoloads from forge.el 13 14 (defvar forge-add-default-bindings t "\ 15 Whether to add Forge's bindings to various Magit keymaps. 16 If you want to disable this, then you must set this to nil before 17 `magit' is loaded. If you do it before `forge' but after `magit' 18 is loaded, then `magit-mode-map' ends up being modified anyway.") 19 (with-eval-after-load 'magit-mode (when forge-add-default-bindings (define-key magit-mode-map "'" 'forge-dispatch) (define-key magit-mode-map "N" 'forge-dispatch))) 20 (register-definition-prefixes "forge" '("forge-")) 21 22 23 ;;; Generated autoloads from forge-bitbucket.el 24 25 (register-definition-prefixes "forge-bitbucket" '("forge-bitbucket-repository")) 26 27 28 ;;; Generated autoloads from forge-commands.el 29 30 (autoload 'forge-dispatch "forge-commands" nil t) 31 (autoload 'forge-pull "forge-commands" "\ 32 Pull topics from the forge repository. 33 34 With a prefix argument and if the repository has not been fetched 35 before, then read a date from the user and limit pulled topics to 36 those that have been updated since then. 37 38 If pulling is too slow, then also consider setting the Git variable 39 `forge.omitExpensive' to `true'. 40 41 (fn &optional REPO UNTIL)" t) 42 (autoload 'forge-pull-notifications "forge-commands" "\ 43 Fetch notifications for all repositories from the current forge." t) 44 (autoload 'forge-pull-topic "forge-commands" "\ 45 Pull the API data for the current topic. 46 If there is no current topic or with a prefix argument read a 47 TOPIC to pull instead. 48 49 (fn TOPIC)" t) 50 (autoload 'forge-browse-dwim "forge-commands" "\ 51 Visit a topic, branch or commit using a browser. 52 Prefer a topic over a branch and that over a commit." t) 53 (autoload 'forge-browse-commit "forge-commands" "\ 54 Visit the url corresponding to REV using a browser. 55 56 (fn REV)" t) 57 (autoload 'forge-copy-url-at-point-as-kill "forge-commands" "\ 58 Copy the url of the thing at point." t) 59 (autoload 'forge-browse-branch "forge-commands" "\ 60 Visit the url corresponding BRANCH using a browser. 61 62 (fn BRANCH)" t) 63 (autoload 'forge-browse-remote "forge-commands" "\ 64 Visit the url corresponding to REMOTE using a browser. 65 66 (fn REMOTE)" t) 67 (autoload 'forge-browse-repository "forge-commands" "\ 68 View the current repository in a separate buffer. 69 70 (fn REPO)" t) 71 (autoload 'forge-browse-topic "forge-commands" "\ 72 Visit the current topic using a browser." t) 73 (autoload 'forge-browse-pullreqs "forge-commands" "\ 74 Visit the pull-requests of the current repository using a browser." t) 75 (autoload 'forge-browse-pullreq "forge-commands" "\ 76 Visit the url corresponding to PULLREQ using a browser. 77 78 (fn PULLREQ)" t) 79 (autoload 'forge-browse-issues "forge-commands" "\ 80 Visit the issues of the current repository using a browser." t) 81 (autoload 'forge-browse-issue "forge-commands" "\ 82 Visit the current issue using a browser. 83 If there is no current issue or with a prefix argument 84 read an ISSUE to visit. 85 86 (fn ISSUE)" t) 87 (autoload 'forge-browse-post "forge-commands" "\ 88 Visit the current post using a browser." t) 89 (autoload 'forge-visit-topic "forge-commands" "\ 90 View the current topic in a separate buffer. 91 If there is no current topic or with a prefix argument 92 read a topic to visit instead. 93 94 (fn TOPIC)" t) 95 (autoload 'forge-visit-pullreq "forge-commands" "\ 96 View the current pull-request in a separate buffer. 97 If there is no current pull-request or with a prefix argument 98 read a PULLREQ to visit instead. 99 100 (fn PULLREQ)" t) 101 (autoload 'forge-visit-issue "forge-commands" "\ 102 Visit the current issue in a separate buffer. 103 If there is no current issue or with a prefix argument 104 read an ISSUE to visit instead. 105 106 (fn ISSUE)" t) 107 (autoload 'forge-visit-repository "forge-commands" "\ 108 View the current repository in a separate buffer. 109 110 (fn REPO)" t) 111 (autoload 'forge-branch-pullreq "forge-commands" "\ 112 Create and configure a new branch from a pull-request. 113 Please see the manual for more information. 114 115 (fn PULLREQ)" t) 116 (autoload 'forge-checkout-pullreq "forge-commands" "\ 117 Create, configure and checkout a new branch from a pull-request. 118 Please see the manual for more information. 119 120 (fn PULLREQ)" t) 121 (autoload 'forge-checkout-worktree "forge-commands" "\ 122 Create, configure and checkout a new worktree from a pull-request. 123 This is like `forge-checkout-pullreq', except that it also 124 creates a new worktree. Please see the manual for more 125 information. 126 127 (fn PATH PULLREQ)" t) 128 (autoload 'forge-fork "forge-commands" "\ 129 Fork the current repository to FORK and add it as a REMOTE. 130 If the fork already exists, then that isn't an error; the remote 131 is added anyway. Currently this only supports Github and Gitlab. 132 133 (fn FORK REMOTE)" t) 134 (autoload 'forge-list-notifications "forge-commands" "\ 135 List notifications." t) 136 (autoload 'forge-add-pullreq-refspec "forge-commands" "\ 137 Configure Git to fetch all pull-requests. 138 This is done by adding \"+refs/pull/*/head:refs/pullreqs/*\" 139 to the value of `remote.REMOTE.fetch', where REMOTE is the 140 upstream remote. Also fetch from REMOTE." t) 141 (autoload 'forge-add-repository "forge-commands" "\ 142 Add a repository to the database. 143 Offer to either pull topics (now and in the future) or to only 144 pull individual topics when the user invokes `forge-pull-topic'. 145 146 (fn URL)" t) 147 (function-put 'forge-add-repository 'interactive-only 't) 148 (autoload 'forge-add-user-repositories "forge-commands" "\ 149 Add all of USER's repositories from HOST to the database. 150 This may take a while. Only Github is supported at the moment. 151 152 (fn HOST USER)" t) 153 (autoload 'forge-add-organization-repositories "forge-commands" "\ 154 Add all of ORGANIZATION's repositories from HOST to the database. 155 This may take a while. Only Github is supported at the moment. 156 157 (fn HOST ORGANIZATION)" t) 158 (autoload 'forge-merge "forge-commands" "\ 159 Merge the current pull-request using METHOD using the forge's API. 160 161 If there is no current pull-request or with a prefix argument, 162 then read pull-request PULLREQ to visit instead. 163 164 Use of this command is discouraged. Unless the remote repository 165 is configured to disallow that, you should instead merge locally 166 and then push the target branch. Forges detect that you have 167 done that and respond by automatically marking the pull-request 168 as merged. 169 170 (fn PULLREQ METHOD)" t) 171 (autoload 'forge-remove-repository "forge-commands" "\ 172 Remove a repository from the database. 173 174 (fn HOST OWNER NAME)" t) 175 (autoload 'forge-remove-topic-locally "forge-commands" "\ 176 Remove a topic from the local database only. 177 Due to how the supported APIs work, it would be too expensive to 178 automatically remove topics from the local datbase that were 179 removed from the forge. The purpose of this command is to allow 180 you to manually clean up the local database. 181 182 (fn TOPIC)" t) 183 (autoload 'forge-reset-database "forge-commands" "\ 184 Move the current database file to the trash. 185 This is useful after the database scheme has changed, which will 186 happen a few times while the forge functionality is still under 187 heavy development." t) 188 (register-definition-prefixes "forge-commands" '("forge-")) 189 190 191 ;;; Generated autoloads from forge-core.el 192 193 (register-definition-prefixes "forge-core" '("forge-")) 194 195 196 ;;; Generated autoloads from forge-db.el 197 198 (register-definition-prefixes "forge-db" '("forge-")) 199 200 201 ;;; Generated autoloads from forge-gitea.el 202 203 (register-definition-prefixes "forge-gitea" '("forge-gitea-repository")) 204 205 206 ;;; Generated autoloads from forge-github.el 207 208 (register-definition-prefixes "forge-github" '("forge-")) 209 210 211 ;;; Generated autoloads from forge-gitlab.el 212 213 (register-definition-prefixes "forge-gitlab" '("forge-gitlab-repository")) 214 215 216 ;;; Generated autoloads from forge-gogs.el 217 218 (register-definition-prefixes "forge-gogs" '("forge-gogs-repository")) 219 220 221 ;;; Generated autoloads from forge-issue.el 222 223 (register-definition-prefixes "forge-issue" '("forge-")) 224 225 226 ;;; Generated autoloads from forge-list.el 227 228 (autoload 'forge-list-topics "forge-list" "\ 229 List topics of the current repository in a separate buffer. 230 231 (fn ID)" t) 232 (autoload 'forge-list-issues "forge-list" "\ 233 List issues of the current repository in a separate buffer. 234 235 (fn ID)" t) 236 (autoload 'forge-list-labeled-issues "forge-list" "\ 237 List issues of the current repository that have LABEL. 238 List them in a separate buffer. 239 240 (fn ID LABEL)" t) 241 (autoload 'forge-list-assigned-issues "forge-list" "\ 242 List issues of the current repository that are assigned to you. 243 List them in a separate buffer. 244 245 (fn ID)" t) 246 (autoload 'forge-list-owned-issues "forge-list" "\ 247 List open issues from all your Github repositories. 248 Options `forge-owned-accounts' and `forge-owned-ignored' 249 controls which repositories are considered to be owned by you. 250 Only Github is supported for now." t) 251 (autoload 'forge-list-pullreqs "forge-list" "\ 252 List pull-requests of the current repository in a separate buffer. 253 254 (fn ID)" t) 255 (autoload 'forge-list-labeled-pullreqs "forge-list" "\ 256 List pull-requests of the current repository that have LABEL. 257 List them in a separate buffer. 258 259 (fn ID LABEL)" t) 260 (autoload 'forge-list-assigned-pullreqs "forge-list" "\ 261 List pull-requests of the current repository that are assigned to you. 262 List them in a separate buffer. 263 264 (fn ID)" t) 265 (autoload 'forge-list-requested-reviews "forge-list" "\ 266 List pull-requests of the current repository that are awaiting your review. 267 List them in a separate buffer. 268 269 (fn ID)" t) 270 (autoload 'forge-list-owned-pullreqs "forge-list" "\ 271 List open pull-requests from all your Github repositories. 272 Options `forge-owned-accounts' and `forge-owned-ignored' 273 controls which repositories are considered to be owned by you. 274 Only Github is supported for now." t) 275 (autoload 'forge-list-authored-pullreqs "forge-list" "\ 276 List open pull-requests of the current repository that are authored by you. 277 List them in a separate buffer. 278 279 (fn ID)" t) 280 (autoload 'forge-list-authored-issues "forge-list" "\ 281 List open issues from the current repository that are authored by you. 282 List them in a separate buffer. 283 284 (fn ID)" t) 285 (autoload 'forge-list-repositories "forge-list" "\ 286 List known repositories in a separate buffer. 287 Here \"known\" means that an entry exists in the local database." t) 288 (autoload 'forge-list-owned-repositories "forge-list" "\ 289 List your own known repositories in a separate buffer. 290 Here \"known\" means that an entry exists in the local database 291 and options `forge-owned-accounts' and `forge-owned-ignored' 292 controls which repositories are considered to be owned by you. 293 Only Github is supported for now." t) 294 (register-definition-prefixes "forge-list" '("forge-")) 295 296 297 ;;; Generated autoloads from forge-notify.el 298 299 (register-definition-prefixes "forge-notify" '("forge-")) 300 301 302 ;;; Generated autoloads from forge-post.el 303 304 (register-definition-prefixes "forge-post" '("forge-")) 305 306 307 ;;; Generated autoloads from forge-pullreq.el 308 309 (register-definition-prefixes "forge-pullreq" '("forge-")) 310 311 312 ;;; Generated autoloads from forge-repo.el 313 314 (register-definition-prefixes "forge-repo" '("forge-")) 315 316 317 ;;; Generated autoloads from forge-revnote.el 318 319 (register-definition-prefixes "forge-revnote" '("forge-revnote")) 320 321 322 ;;; Generated autoloads from forge-semi.el 323 324 (register-definition-prefixes "forge-semi" '("forge-")) 325 326 327 ;;; Generated autoloads from forge-topic.el 328 329 (register-definition-prefixes "forge-topic" '("forge-")) 330 331 ;;; End of scraped data 332 333 (provide 'forge-autoloads) 334 335 ;; Local Variables: 336 ;; version-control: never 337 ;; no-byte-compile: t 338 ;; no-update-autoloads: t 339 ;; no-native-compile: t 340 ;; coding: utf-8-emacs-unix 341 ;; End: 342 343 ;;; forge-autoloads.el ends here