dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

pdf-tools-autoloads.el (17246B)


      1 ;;; pdf-tools-autoloads.el --- automatically extracted autoloads
      2 ;;
      3 ;;; Code:
      4 
      5 (add-to-list 'load-path (directory-file-name
      6                          (or (file-name-directory #$) (car load-path))))
      7 
      8 
      9 ;;;### (autoloads nil "pdf-annot" "pdf-annot.el" (0 0 0 0))
     10 ;;; Generated autoloads from pdf-annot.el
     11 
     12 (autoload 'pdf-annot-minor-mode "pdf-annot" "\
     13 Support for PDF Annotations.
     14 
     15 If called interactively, enable Pdf-Annot minor mode if ARG is
     16 positive, and disable it if ARG is zero or negative.  If called
     17 from Lisp, also enable the mode if ARG is omitted or nil, and
     18 toggle it if ARG is `toggle'; disable the mode otherwise.
     19 
     20 \\{pdf-annot-minor-mode-map}
     21 
     22 \(fn &optional ARG)" t nil)
     23 
     24 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-annot" '("pdf-annot-")))
     25 
     26 ;;;***
     27 
     28 ;;;### (autoloads nil "pdf-cache" "pdf-cache.el" (0 0 0 0))
     29 ;;; Generated autoloads from pdf-cache.el
     30 
     31 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-cache" '("boundingbox" "define-pdf-cache-function" "page" "pdf-cache-" "textregions")))
     32 
     33 ;;;***
     34 
     35 ;;;### (autoloads nil "pdf-dev" "pdf-dev.el" (0 0 0 0))
     36 ;;; Generated autoloads from pdf-dev.el
     37 
     38 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-dev" '("pdf-dev-")))
     39 
     40 ;;;***
     41 
     42 ;;;### (autoloads nil "pdf-history" "pdf-history.el" (0 0 0 0))
     43 ;;; Generated autoloads from pdf-history.el
     44 
     45 (autoload 'pdf-history-minor-mode "pdf-history" "\
     46 Keep a history of previously visited pages.
     47 
     48 If called interactively, enable Pdf-History minor mode if ARG is
     49 positive, and disable it if ARG is zero or negative.  If called
     50 from Lisp, also enable the mode if ARG is omitted or nil, and
     51 toggle it if ARG is `toggle'; disable the mode otherwise.
     52 
     53 This is a simple stack-based history.  Turning the page or
     54 following a link pushes the left-behind page on the stack, which
     55 may be navigated with the following keys.
     56 
     57 \\{pdf-history-minor-mode-map}
     58 
     59 \(fn &optional ARG)" t nil)
     60 
     61 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-history" '("pdf-history-")))
     62 
     63 ;;;***
     64 
     65 ;;;### (autoloads nil "pdf-info" "pdf-info.el" (0 0 0 0))
     66 ;;; Generated autoloads from pdf-info.el
     67 
     68 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-info" '("pdf-info-")))
     69 
     70 ;;;***
     71 
     72 ;;;### (autoloads nil "pdf-isearch" "pdf-isearch.el" (0 0 0 0))
     73 ;;; Generated autoloads from pdf-isearch.el
     74 
     75 (autoload 'pdf-isearch-minor-mode "pdf-isearch" "\
     76 Isearch mode for PDF buffer.
     77 
     78 If called interactively, enable Pdf-Isearch minor mode if ARG is
     79 positive, and disable it if ARG is zero or negative.  If called
     80 from Lisp, also enable the mode if ARG is omitted or nil, and
     81 toggle it if ARG is `toggle'; disable the mode otherwise.
     82 
     83 When this mode is enabled \\[isearch-forward], among other keys,
     84 starts an incremental search in this PDF document.  Since this mode
     85 uses external programs to highlight found matches via
     86 image-processing, proceeding to the next match may be slow.
     87 
     88 Therefore two isearch behaviours have been defined: Normal isearch and
     89 batch mode.  The later one is a minor mode
     90 \(`pdf-isearch-batch-mode'), which when activated inhibits isearch
     91 from stopping at and highlighting every single match, but rather
     92 display them batch-wise.  Here a batch means a number of matches
     93 currently visible in the selected window.
     94 
     95 The kind of highlighting is determined by three faces
     96 `pdf-isearch-match' (for the current match), `pdf-isearch-lazy'
     97 \(for all other matches) and `pdf-isearch-batch' (when in batch
     98 mode), which see.
     99 
    100 Colors may also be influenced by the minor-mode
    101 `pdf-view-dark-minor-mode'.  If this is minor mode enabled, each face's
    102 dark colors, are used (see e.g. `frame-background-mode'), instead
    103 of the light ones.
    104 
    105 \\{pdf-isearch-minor-mode-map}
    106 While in `isearch-mode' the following keys are available. Note
    107 that not every isearch command work as expected.
    108 
    109 \\{pdf-isearch-active-mode-map}
    110 
    111 \(fn &optional ARG)" t nil)
    112 
    113 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-isearch" '("pdf-isearch-")))
    114 
    115 ;;;***
    116 
    117 ;;;### (autoloads nil "pdf-links" "pdf-links.el" (0 0 0 0))
    118 ;;; Generated autoloads from pdf-links.el
    119 
    120 (autoload 'pdf-links-minor-mode "pdf-links" "\
    121 Handle links in PDF documents.\\<pdf-links-minor-mode-map>
    122 
    123 If called interactively, enable Pdf-Links minor mode if ARG is
    124 positive, and disable it if ARG is zero or negative.  If called
    125 from Lisp, also enable the mode if ARG is omitted or nil, and
    126 toggle it if ARG is `toggle'; disable the mode otherwise.
    127 
    128 If this mode is enabled, most links in the document may be
    129 activated by clicking on them or by pressing \\[pdf-links-action-perform] and selecting
    130 one of the displayed keys, or by using isearch limited to
    131 links via \\[pdf-links-isearch-link].
    132 
    133 \\{pdf-links-minor-mode-map}
    134 
    135 \(fn &optional ARG)" t nil)
    136 
    137 (autoload 'pdf-links-action-perform "pdf-links" "\
    138 Follow LINK, depending on its type.
    139 
    140 This may turn to another page, switch to another PDF buffer or
    141 invoke `pdf-links-browse-uri-function'.
    142 
    143 Interactively, link is read via `pdf-links-read-link-action'.
    144 This function displays characters around the links in the current
    145 page and starts reading characters (ignoring case).  After a
    146 sufficient number of characters have been read, the corresponding
    147 link's link is invoked.  Additionally, SPC may be used to
    148 scroll the current page.
    149 
    150 \(fn LINK)" t nil)
    151 
    152 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-links" '("pdf-links-")))
    153 
    154 ;;;***
    155 
    156 ;;;### (autoloads nil "pdf-loader" "pdf-loader.el" (0 0 0 0))
    157 ;;; Generated autoloads from pdf-loader.el
    158 
    159 (autoload 'pdf-loader-install "pdf-loader" "\
    160 Prepare Emacs for using PDF Tools.
    161 
    162 This function acts as a replacement for `pdf-tools-install' and
    163 makes Emacs load and use PDF Tools as soon as a PDF file is
    164 opened, but not sooner.
    165 
    166 The arguments are passed verbatim to `pdf-tools-install', which
    167 see.
    168 
    169 \(fn &optional NO-QUERY-P SKIP-DEPENDENCIES-P NO-ERROR-P FORCE-DEPENDENCIES-P)" nil nil)
    170 
    171 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-loader" '("pdf-loader--")))
    172 
    173 ;;;***
    174 
    175 ;;;### (autoloads nil "pdf-macs" "pdf-macs.el" (0 0 0 0))
    176 ;;; Generated autoloads from pdf-macs.el
    177 
    178 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-macs" '("pdf-view-")))
    179 
    180 ;;;***
    181 
    182 ;;;### (autoloads nil "pdf-misc" "pdf-misc.el" (0 0 0 0))
    183 ;;; Generated autoloads from pdf-misc.el
    184 
    185 (autoload 'pdf-misc-minor-mode "pdf-misc" "\
    186 FIXME:  Not documented.
    187 
    188 If called interactively, enable Pdf-Misc minor mode if ARG is
    189 positive, and disable it if ARG is zero or negative.  If called
    190 from Lisp, also enable the mode if ARG is omitted or nil, and
    191 toggle it if ARG is `toggle'; disable the mode otherwise.
    192 
    193 \(fn &optional ARG)" t nil)
    194 
    195 (autoload 'pdf-misc-size-indication-minor-mode "pdf-misc" "\
    196 Provide a working size indication in the mode-line.
    197 
    198 If called interactively, enable Pdf-Misc-Size-Indication minor
    199 mode if ARG is positive, and disable it if ARG is zero or
    200 negative.  If called from Lisp, also enable the mode if ARG is
    201 omitted or nil, and toggle it if ARG is `toggle'; disable the
    202 mode otherwise.
    203 
    204 \(fn &optional ARG)" t nil)
    205 
    206 (autoload 'pdf-misc-menu-bar-minor-mode "pdf-misc" "\
    207 Display a PDF Tools menu in the menu-bar.
    208 
    209 If called interactively, enable Pdf-Misc-Menu-Bar minor mode if
    210 ARG is positive, and disable it if ARG is zero or negative.  If
    211 called from Lisp, also enable the mode if ARG is omitted or nil,
    212 and toggle it if ARG is `toggle'; disable the mode otherwise.
    213 
    214 \(fn &optional ARG)" t nil)
    215 
    216 (autoload 'pdf-misc-context-menu-minor-mode "pdf-misc" "\
    217 Provide a right-click context menu in PDF buffers.
    218 
    219 If called interactively, enable Pdf-Misc-Context-Menu minor mode
    220 if ARG is positive, and disable it if ARG is zero or negative.
    221 If called from Lisp, also enable the mode if ARG is omitted or
    222 nil, and toggle it if ARG is `toggle'; disable the mode
    223 otherwise.
    224 
    225 \\{pdf-misc-context-menu-minor-mode-map}
    226 
    227 \(fn &optional ARG)" t nil)
    228 
    229 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-misc" '("pdf-misc-")))
    230 
    231 ;;;***
    232 
    233 ;;;### (autoloads nil "pdf-occur" "pdf-occur.el" (0 0 0 0))
    234 ;;; Generated autoloads from pdf-occur.el
    235 
    236 (autoload 'pdf-occur "pdf-occur" "\
    237 List lines matching STRING or PCRE.
    238 
    239 Interactively search for a regexp. Unless a prefix arg was given,
    240 in which case this functions performs a string search.
    241 
    242 If `pdf-occur-prefer-string-search' is non-nil, the meaning of
    243 the prefix-arg is inverted.
    244 
    245 \(fn STRING &optional REGEXP-P)" t nil)
    246 
    247 (autoload 'pdf-occur-multi-command "pdf-occur" "\
    248 Perform `pdf-occur' on multiple buffer.
    249 
    250 For a programmatic search of multiple documents see
    251 `pdf-occur-search'." t nil)
    252 
    253 (defvar pdf-occur-global-minor-mode nil "\
    254 Non-nil if Pdf-Occur-Global minor mode is enabled.
    255 See the `pdf-occur-global-minor-mode' command
    256 for a description of this minor mode.
    257 Setting this variable directly does not take effect;
    258 either customize it (see the info node `Easy Customization')
    259 or call the function `pdf-occur-global-minor-mode'.")
    260 
    261 (custom-autoload 'pdf-occur-global-minor-mode "pdf-occur" nil)
    262 
    263 (autoload 'pdf-occur-global-minor-mode "pdf-occur" "\
    264 Enable integration of Pdf Occur with other modes.
    265 
    266 If called interactively, enable Pdf-Occur-Global minor mode if
    267 ARG is positive, and disable it if ARG is zero or negative.  If
    268 called from Lisp, also enable the mode if ARG is omitted or nil,
    269 and toggle it if ARG is `toggle'; disable the mode otherwise.
    270 
    271 This global minor mode enables (or disables)
    272 `pdf-occur-ibuffer-minor-mode' and `pdf-occur-dired-minor-mode'
    273 in all current and future ibuffer/dired buffer.
    274 
    275 \(fn &optional ARG)" t nil)
    276 
    277 (autoload 'pdf-occur-ibuffer-minor-mode "pdf-occur" "\
    278 Hack into ibuffer's do-occur binding.
    279 
    280 If called interactively, enable Pdf-Occur-Ibuffer minor mode if
    281 ARG is positive, and disable it if ARG is zero or negative.  If
    282 called from Lisp, also enable the mode if ARG is omitted or nil,
    283 and toggle it if ARG is `toggle'; disable the mode otherwise.
    284 
    285 This mode remaps `ibuffer-do-occur' to
    286 `pdf-occur-ibuffer-do-occur', which will start the PDF Tools
    287 version of `occur', if all marked buffer's are in `pdf-view-mode'
    288 and otherwise fallback to `ibuffer-do-occur'.
    289 
    290 \(fn &optional ARG)" t nil)
    291 
    292 (autoload 'pdf-occur-dired-minor-mode "pdf-occur" "\
    293 Hack into dired's `dired-do-search' binding.
    294 
    295 If called interactively, enable Pdf-Occur-Dired minor mode if ARG
    296 is positive, and disable it if ARG is zero or negative.  If
    297 called from Lisp, also enable the mode if ARG is omitted or nil,
    298 and toggle it if ARG is `toggle'; disable the mode otherwise.
    299 
    300 This mode remaps `dired-do-search' to
    301 `pdf-occur-dired-do-search', which will start the PDF Tools
    302 version of `occur', if all marked buffer's are in `pdf-view-mode'
    303 and otherwise fallback to `dired-do-search'.
    304 
    305 \(fn &optional ARG)" t nil)
    306 
    307 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-occur" '("pdf-occur-")))
    308 
    309 ;;;***
    310 
    311 ;;;### (autoloads nil "pdf-outline" "pdf-outline.el" (0 0 0 0))
    312 ;;; Generated autoloads from pdf-outline.el
    313 
    314 (autoload 'pdf-outline-minor-mode "pdf-outline" "\
    315 Display an outline of a PDF document.
    316 
    317 If called interactively, enable Pdf-Outline minor mode if ARG is
    318 positive, and disable it if ARG is zero or negative.  If called
    319 from Lisp, also enable the mode if ARG is omitted or nil, and
    320 toggle it if ARG is `toggle'; disable the mode otherwise.
    321 
    322 This provides a PDF's outline on the menu bar via imenu.
    323 Additionally the same outline may be viewed in a designated
    324 buffer.
    325 
    326 \\{pdf-outline-minor-mode-map}
    327 
    328 \(fn &optional ARG)" t nil)
    329 
    330 (autoload 'pdf-outline "pdf-outline" "\
    331 Display an PDF outline of BUFFER.
    332 
    333 BUFFER defaults to the current buffer.  Select the outline
    334 buffer, unless NO-SELECT-WINDOW-P is non-nil.
    335 
    336 \(fn &optional BUFFER NO-SELECT-WINDOW-P)" t nil)
    337 
    338 (autoload 'pdf-outline-imenu-enable "pdf-outline" "\
    339 Enable imenu in the current PDF buffer." t nil)
    340 
    341 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-outline" '("pdf-outline")))
    342 
    343 ;;;***
    344 
    345 ;;;### (autoloads nil "pdf-sync" "pdf-sync.el" (0 0 0 0))
    346 ;;; Generated autoloads from pdf-sync.el
    347 
    348 (autoload 'pdf-sync-minor-mode "pdf-sync" "\
    349 Correlate a PDF position with the TeX file.
    350 \\<pdf-sync-minor-mode-map>
    351 This works via SyncTeX, which means the TeX sources need to have
    352 been compiled with `--synctex=1'.  In AUCTeX this can be done by
    353 setting `TeX-source-correlate-method' to 'synctex (before AUCTeX
    354 is loaded) and enabling `TeX-source-correlate-mode'.
    355 
    356 If called interactively, enable Pdf-Sync minor mode if ARG is
    357 positive, and disable it if ARG is zero or negative.  If called
    358 from Lisp, also enable the mode if ARG is omitted or nil, and
    359 toggle it if ARG is `toggle'; disable the mode otherwise.
    360 
    361 Then \\[pdf-sync-backward-search-mouse] in the PDF buffer will open the
    362 corresponding TeX location.
    363 
    364 If AUCTeX is your preferred tex-mode, this library arranges to
    365 bind `pdf-sync-forward-display-pdf-key' (the default is `C-c C-g')
    366 to `pdf-sync-forward-search' in `TeX-source-correlate-map'.  This
    367 function displays the PDF page corresponding to the current
    368 position in the TeX buffer.  This function only works together
    369 with AUCTeX.
    370 
    371 \(fn &optional ARG)" t nil)
    372 
    373 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-sync" '("pdf-sync-")))
    374 
    375 ;;;***
    376 
    377 ;;;### (autoloads nil "pdf-tools" "pdf-tools.el" (0 0 0 0))
    378 ;;; Generated autoloads from pdf-tools.el
    379 
    380 (defvar pdf-tools-handle-upgrades t "\
    381 Whether PDF Tools should handle upgrading itself.")
    382 
    383 (custom-autoload 'pdf-tools-handle-upgrades "pdf-tools" t)
    384 
    385 (autoload 'pdf-tools-install "pdf-tools" "\
    386 Install PDF-Tools in all current and future PDF buffers.
    387 
    388 If the `pdf-info-epdfinfo-program' is not running or does not
    389 appear to be working, attempt to rebuild it.  If this build
    390 succeeded, continue with the activation of the package.
    391 Otherwise fail silently, i.e. no error is signaled.
    392 
    393 Build the program (if necessary) without asking first, if
    394 NO-QUERY-P is non-nil.
    395 
    396 Don't attempt to install system packages, if SKIP-DEPENDENCIES-P
    397 is non-nil.
    398 
    399 Do not signal an error in case the build failed, if NO-ERROR-P is
    400 non-nil.
    401 
    402 Attempt to install system packages (even if it is deemed
    403 unnecessary), if FORCE-DEPENDENCIES-P is non-nil.
    404 
    405 Note that SKIP-DEPENDENCIES-P and FORCE-DEPENDENCIES-P are
    406 mutually exclusive.
    407 
    408 Note further, that you can influence the installation directory
    409 by setting `pdf-info-epdfinfo-program' to an appropriate
    410 value (e.g. ~/bin/epdfinfo) before calling this function.
    411 
    412 See `pdf-view-mode' and `pdf-tools-enabled-modes'.
    413 
    414 \(fn &optional NO-QUERY-P SKIP-DEPENDENCIES-P NO-ERROR-P FORCE-DEPENDENCIES-P)" t nil)
    415 
    416 (autoload 'pdf-tools-enable-minor-modes "pdf-tools" "\
    417 Enable MODES in the current buffer.
    418 
    419 MODES defaults to `pdf-tools-enabled-modes'.
    420 
    421 \(fn &optional MODES)" t nil)
    422 
    423 (autoload 'pdf-tools-help "pdf-tools" nil t nil)
    424 
    425 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-tools" '("pdf-tools-")))
    426 
    427 ;;;***
    428 
    429 ;;;### (autoloads nil "pdf-util" "pdf-util.el" (0 0 0 0))
    430 ;;; Generated autoloads from pdf-util.el
    431 
    432 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-util" '("display-buffer-split-below-and-attach" "pdf-util-")))
    433 
    434 ;;;***
    435 
    436 ;;;### (autoloads nil "pdf-view" "pdf-view.el" (0 0 0 0))
    437 ;;; Generated autoloads from pdf-view.el
    438 
    439 (autoload 'pdf-view-bookmark-jump-handler "pdf-view" "\
    440 The bookmark handler-function interface for bookmark BMK.
    441 
    442 See also `pdf-view-bookmark-make-record'.
    443 
    444 \(fn BMK)" nil nil)
    445 
    446 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-view" '("pdf-view-")))
    447 
    448 ;;;***
    449 
    450 ;;;### (autoloads nil "pdf-virtual" "pdf-virtual.el" (0 0 0 0))
    451 ;;; Generated autoloads from pdf-virtual.el
    452 
    453 (autoload 'pdf-virtual-edit-mode "pdf-virtual" "\
    454 Major mode when editing a virtual PDF buffer.
    455 
    456 \(fn)" t nil)
    457 
    458 (autoload 'pdf-virtual-view-mode "pdf-virtual" "\
    459 Major mode in virtual PDF buffers.
    460 
    461 \(fn)" t nil)
    462 
    463 (defvar pdf-virtual-global-minor-mode nil "\
    464 Non-nil if Pdf-Virtual-Global minor mode is enabled.
    465 See the `pdf-virtual-global-minor-mode' command
    466 for a description of this minor mode.
    467 Setting this variable directly does not take effect;
    468 either customize it (see the info node `Easy Customization')
    469 or call the function `pdf-virtual-global-minor-mode'.")
    470 
    471 (custom-autoload 'pdf-virtual-global-minor-mode "pdf-virtual" nil)
    472 
    473 (autoload 'pdf-virtual-global-minor-mode "pdf-virtual" "\
    474 Enable recognition and handling of VPDF files.
    475 
    476 If called interactively, enable Pdf-Virtual-Global minor mode if
    477 ARG is positive, and disable it if ARG is zero or negative.  If
    478 called from Lisp, also enable the mode if ARG is omitted or nil,
    479 and toggle it if ARG is `toggle'; disable the mode otherwise.
    480 
    481 \(fn &optional ARG)" t nil)
    482 
    483 (autoload 'pdf-virtual-buffer-create "pdf-virtual" "\
    484 
    485 
    486 \(fn &optional FILENAMES BUFFER-NAME DISPLAY-P)" t nil)
    487 
    488 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pdf-virtual" '("pdf-virtual-")))
    489 
    490 ;;;***
    491 
    492 ;;;### (autoloads nil nil ("pdf-tools-pkg.el") (0 0 0 0))
    493 
    494 ;;;***
    495 
    496 ;; Local Variables:
    497 ;; version-control: never
    498 ;; no-byte-compile: t
    499 ;; no-update-autoloads: t
    500 ;; coding: utf-8
    501 ;; End:
    502 ;;; pdf-tools-autoloads.el ends here