Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

588 lines
21 KiB

  1. ;;; projectile-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "projectile" "projectile.el" (0 0 0 0))
  7. ;;; Generated autoloads from projectile.el
  8. (autoload 'projectile-version "projectile" "\
  9. Get the Projectile version as string.
  10. If called interactively or if SHOW-VERSION is non-nil, show the
  11. version in the echo area and the messages buffer.
  12. The returned string includes both, the version from package.el
  13. and the library version, if both a present and different.
  14. If the version number could not be determined, signal an error,
  15. if called interactively, or if SHOW-VERSION is non-nil, otherwise
  16. just return nil.
  17. \(fn &optional SHOW-VERSION)" t nil)
  18. (autoload 'projectile-invalidate-cache "projectile" "\
  19. Remove the current project's files from `projectile-projects-cache'.
  20. With a prefix argument PROMPT prompts for the name of the project whose cache
  21. to invalidate.
  22. \(fn PROMPT)" t nil)
  23. (autoload 'projectile-purge-file-from-cache "projectile" "\
  24. Purge FILE from the cache of the current project.
  25. \(fn FILE)" t nil)
  26. (autoload 'projectile-purge-dir-from-cache "projectile" "\
  27. Purge DIR from the cache of the current project.
  28. \(fn DIR)" t nil)
  29. (autoload 'projectile-cache-current-file "projectile" "\
  30. Add the currently visited file to the cache." t nil)
  31. (autoload 'projectile-discover-projects-in-directory "projectile" "\
  32. Discover any projects in DIRECTORY and add them to the projectile cache.
  33. This function is not recursive and only adds projects with roots
  34. at the top level of DIRECTORY.
  35. \(fn DIRECTORY)" t nil)
  36. (autoload 'projectile-discover-projects-in-search-path "projectile" "\
  37. Discover projects in `projectile-project-search-path'.
  38. Invoked automatically when `projectile-mode' is enabled." t nil)
  39. (autoload 'projectile-switch-to-buffer "projectile" "\
  40. Switch to a project buffer." t nil)
  41. (autoload 'projectile-switch-to-buffer-other-window "projectile" "\
  42. Switch to a project buffer and show it in another window." t nil)
  43. (autoload 'projectile-switch-to-buffer-other-frame "projectile" "\
  44. Switch to a project buffer and show it in another frame." t nil)
  45. (autoload 'projectile-display-buffer "projectile" "\
  46. Display a project buffer in another window without selecting it." t nil)
  47. (autoload 'projectile-project-buffers-other-buffer "projectile" "\
  48. Switch to the most recently selected buffer project buffer.
  49. Only buffers not visible in windows are returned." t nil)
  50. (autoload 'projectile-multi-occur "projectile" "\
  51. Do a `multi-occur' in the project's buffers.
  52. With a prefix argument, show NLINES of context.
  53. \(fn &optional NLINES)" t nil)
  54. (autoload 'projectile-find-other-file "projectile" "\
  55. Switch between files with the same name but different extensions.
  56. With FLEX-MATCHING, match any file that contains the base name of current file.
  57. Other file extensions can be customized with the variable `projectile-other-file-alist'.
  58. \(fn &optional FLEX-MATCHING)" t nil)
  59. (autoload 'projectile-find-other-file-other-window "projectile" "\
  60. Switch between files with the same name but different extensions in other window.
  61. With FLEX-MATCHING, match any file that contains the base name of current file.
  62. Other file extensions can be customized with the variable `projectile-other-file-alist'.
  63. \(fn &optional FLEX-MATCHING)" t nil)
  64. (autoload 'projectile-find-other-file-other-frame "projectile" "\
  65. Switch between files with the same name but different extensions in other frame.
  66. With FLEX-MATCHING, match any file that contains the base name of current file.
  67. Other file extensions can be customized with the variable `projectile-other-file-alist'.
  68. \(fn &optional FLEX-MATCHING)" t nil)
  69. (autoload 'projectile-find-file-dwim "projectile" "\
  70. Jump to a project's files using completion based on context.
  71. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  72. If point is on a filename, Projectile first tries to search for that
  73. file in project:
  74. - If it finds just a file, it switches to that file instantly. This works even
  75. if the filename is incomplete, but there's only a single file in the current project
  76. that matches the filename at point. For example, if there's only a single file named
  77. \"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
  78. `projectile-find-file-dwim' still switches to \"projectile/projectile.el\" immediately
  79. because this is the only filename that matches.
  80. - If it finds a list of files, the list is displayed for selecting. A list of
  81. files is displayed when a filename appears more than one in the project or the
  82. filename at point is a prefix of more than two files in a project. For example,
  83. if `projectile-find-file-dwim' is executed on a filepath like \"projectile/\", it lists
  84. the content of that directory. If it is executed on a partial filename like
  85. \"projectile/a\", a list of files with character 'a' in that directory is presented.
  86. - If it finds nothing, display a list of all files in project for selecting.
  87. \(fn &optional INVALIDATE-CACHE)" t nil)
  88. (autoload 'projectile-find-file-dwim-other-window "projectile" "\
  89. Jump to a project's files using completion based on context in other window.
  90. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  91. If point is on a filename, Projectile first tries to search for that
  92. file in project:
  93. - If it finds just a file, it switches to that file instantly. This works even
  94. if the filename is incomplete, but there's only a single file in the current project
  95. that matches the filename at point. For example, if there's only a single file named
  96. \"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
  97. `projectile-find-file-dwim-other-window' still switches to \"projectile/projectile.el\"
  98. immediately because this is the only filename that matches.
  99. - If it finds a list of files, the list is displayed for selecting. A list of
  100. files is displayed when a filename appears more than one in the project or the
  101. filename at point is a prefix of more than two files in a project. For example,
  102. if `projectile-find-file-dwim-other-window' is executed on a filepath like \"projectile/\", it lists
  103. the content of that directory. If it is executed on a partial filename
  104. like \"projectile/a\", a list of files with character 'a' in that directory
  105. is presented.
  106. - If it finds nothing, display a list of all files in project for selecting.
  107. \(fn &optional INVALIDATE-CACHE)" t nil)
  108. (autoload 'projectile-find-file-dwim-other-frame "projectile" "\
  109. Jump to a project's files using completion based on context in other frame.
  110. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  111. If point is on a filename, Projectile first tries to search for that
  112. file in project:
  113. - If it finds just a file, it switches to that file instantly. This works even
  114. if the filename is incomplete, but there's only a single file in the current project
  115. that matches the filename at point. For example, if there's only a single file named
  116. \"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
  117. `projectile-find-file-dwim-other-frame' still switches to \"projectile/projectile.el\"
  118. immediately because this is the only filename that matches.
  119. - If it finds a list of files, the list is displayed for selecting. A list of
  120. files is displayed when a filename appears more than one in the project or the
  121. filename at point is a prefix of more than two files in a project. For example,
  122. if `projectile-find-file-dwim-other-frame' is executed on a filepath like \"projectile/\", it lists
  123. the content of that directory. If it is executed on a partial filename
  124. like \"projectile/a\", a list of files with character 'a' in that directory
  125. is presented.
  126. - If it finds nothing, display a list of all files in project for selecting.
  127. \(fn &optional INVALIDATE-CACHE)" t nil)
  128. (autoload 'projectile-find-file "projectile" "\
  129. Jump to a project's file using completion.
  130. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  131. \(fn &optional INVALIDATE-CACHE)" t nil)
  132. (autoload 'projectile-find-file-other-window "projectile" "\
  133. Jump to a project's file using completion and show it in another window.
  134. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  135. \(fn &optional INVALIDATE-CACHE)" t nil)
  136. (autoload 'projectile-find-file-other-frame "projectile" "\
  137. Jump to a project's file using completion and show it in another frame.
  138. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  139. \(fn &optional INVALIDATE-CACHE)" t nil)
  140. (autoload 'projectile-toggle-project-read-only "projectile" "\
  141. Toggle project read only." t nil)
  142. (autoload 'projectile-find-dir "projectile" "\
  143. Jump to a project's directory using completion.
  144. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  145. \(fn &optional INVALIDATE-CACHE)" t nil)
  146. (autoload 'projectile-find-dir-other-window "projectile" "\
  147. Jump to a project's directory in other window using completion.
  148. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  149. \(fn &optional INVALIDATE-CACHE)" t nil)
  150. (autoload 'projectile-find-dir-other-frame "projectile" "\
  151. Jump to a project's directory in other frame using completion.
  152. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  153. \(fn &optional INVALIDATE-CACHE)" t nil)
  154. (autoload 'projectile-find-test-file "projectile" "\
  155. Jump to a project's test file using completion.
  156. With a prefix arg INVALIDATE-CACHE invalidates the cache first.
  157. \(fn &optional INVALIDATE-CACHE)" t nil)
  158. (autoload 'projectile-find-related-file-other-window "projectile" "\
  159. Open related file in other window." t nil)
  160. (autoload 'projectile-find-related-file-other-frame "projectile" "\
  161. Open related file in other frame." t nil)
  162. (autoload 'projectile-find-related-file "projectile" "\
  163. Open related file." t nil)
  164. (autoload 'projectile-related-files-fn-groups "projectile" "\
  165. Generate a related-files-fn which relates as KIND for files in each of GROUPS.
  166. \(fn KIND GROUPS)" nil nil)
  167. (autoload 'projectile-related-files-fn-extensions "projectile" "\
  168. Generate a related-files-fn which relates as KIND for files having EXTENSIONS.
  169. \(fn KIND EXTENSIONS)" nil nil)
  170. (autoload 'projectile-related-files-fn-test-with-prefix "projectile" "\
  171. Generate a related-files-fn which relates tests and impl for files with EXTENSION based on TEST-PREFIX.
  172. \(fn EXTENSION TEST-PREFIX)" nil nil)
  173. (autoload 'projectile-related-files-fn-test-with-suffix "projectile" "\
  174. Generate a related-files-fn which relates tests and impl for files with EXTENSION based on TEST-SUFFIX.
  175. \(fn EXTENSION TEST-SUFFIX)" nil nil)
  176. (autoload 'projectile-project-info "projectile" "\
  177. Display info for current project." t nil)
  178. (autoload 'projectile-find-implementation-or-test-other-window "projectile" "\
  179. Open matching implementation or test file in other window." t nil)
  180. (autoload 'projectile-find-implementation-or-test-other-frame "projectile" "\
  181. Open matching implementation or test file in other frame." t nil)
  182. (autoload 'projectile-toggle-between-implementation-and-test "projectile" "\
  183. Toggle between an implementation file and its test file." t nil)
  184. (autoload 'projectile-grep "projectile" "\
  185. Perform rgrep in the project.
  186. With a prefix ARG asks for files (globbing-aware) which to grep in.
  187. With prefix ARG of `-' (such as `M--'), default the files (without prompt),
  188. to `projectile-grep-default-files'.
  189. With REGEXP given, don't query the user for a regexp.
  190. \(fn &optional REGEXP ARG)" t nil)
  191. (autoload 'projectile-ag "projectile" "\
  192. Run an ag search with SEARCH-TERM in the project.
  193. With an optional prefix argument ARG SEARCH-TERM is interpreted as a
  194. regular expression.
  195. \(fn SEARCH-TERM &optional ARG)" t nil)
  196. (autoload 'projectile-ripgrep "projectile" "\
  197. Run a Ripgrep search with `SEARCH-TERM' at current project root.
  198. With an optional prefix argument ARG SEARCH-TERM is interpreted as a
  199. regular expression.
  200. \(fn SEARCH-TERM &optional ARG)" t nil)
  201. (autoload 'projectile-regenerate-tags "projectile" "\
  202. Regenerate the project's [e|g]tags." t nil)
  203. (autoload 'projectile-find-tag "projectile" "\
  204. Find tag in project." t nil)
  205. (autoload 'projectile-run-command-in-root "projectile" "\
  206. Invoke `execute-extended-command' in the project's root." t nil)
  207. (autoload 'projectile-run-shell-command-in-root "projectile" "\
  208. Invoke `shell-command' in the project's root." t nil)
  209. (autoload 'projectile-run-async-shell-command-in-root "projectile" "\
  210. Invoke `async-shell-command' in the project's root." t nil)
  211. (autoload 'projectile-run-gdb "projectile" "\
  212. Invoke `gdb' in the project's root." t nil)
  213. (autoload 'projectile-run-shell "projectile" "\
  214. Invoke `shell' in the project's root.
  215. Switch to the project specific shell buffer if it already exists.
  216. Use a prefix argument ARG to indicate creation of a new process instead.
  217. \(fn &optional ARG)" t nil)
  218. (autoload 'projectile-run-eshell "projectile" "\
  219. Invoke `eshell' in the project's root.
  220. Switch to the project specific eshell buffer if it already exists.
  221. Use a prefix argument ARG to indicate creation of a new process instead.
  222. \(fn &optional ARG)" t nil)
  223. (autoload 'projectile-run-ielm "projectile" "\
  224. Invoke `ielm' in the project's root.
  225. Switch to the project specific ielm buffer if it already exists.
  226. Use a prefix argument ARG to indicate creation of a new process instead.
  227. \(fn &optional ARG)" t nil)
  228. (autoload 'projectile-run-term "projectile" "\
  229. Invoke `term' in the project's root.
  230. Switch to the project specific term buffer if it already exists.
  231. Use a prefix argument ARG to indicate creation of a new process instead.
  232. \(fn &optional ARG)" t nil)
  233. (autoload 'projectile-run-vterm "projectile" "\
  234. Invoke `vterm' in the project's root.
  235. Switch to the project specific term buffer if it already exists.
  236. Use a prefix argument ARG to indicate creation of a new process instead.
  237. \(fn &optional ARG)" t nil)
  238. (autoload 'projectile-replace "projectile" "\
  239. Replace literal string in project using non-regexp `tags-query-replace'.
  240. With a prefix argument ARG prompts you for a directory on which
  241. to run the replacement.
  242. \(fn &optional ARG)" t nil)
  243. (autoload 'projectile-replace-regexp "projectile" "\
  244. Replace a regexp in the project using `tags-query-replace'.
  245. With a prefix argument ARG prompts you for a directory on which
  246. to run the replacement.
  247. \(fn &optional ARG)" t nil)
  248. (autoload 'projectile-kill-buffers "projectile" "\
  249. Kill project buffers.
  250. The buffer are killed according to the value of
  251. `projectile-kill-buffers-filter'." t nil)
  252. (autoload 'projectile-save-project-buffers "projectile" "\
  253. Save all project buffers." t nil)
  254. (autoload 'projectile-dired "projectile" "\
  255. Open `dired' at the root of the project." t nil)
  256. (autoload 'projectile-dired-other-window "projectile" "\
  257. Open `dired' at the root of the project in another window." t nil)
  258. (autoload 'projectile-dired-other-frame "projectile" "\
  259. Open `dired' at the root of the project in another frame." t nil)
  260. (autoload 'projectile-vc "projectile" "\
  261. Open `vc-dir' at the root of the project.
  262. For git projects `magit-status-internal' is used if available.
  263. For hg projects `monky-status' is used if available.
  264. If PROJECT-ROOT is given, it is opened instead of the project
  265. root directory of the current buffer file. If interactively
  266. called with a prefix argument, the user is prompted for a project
  267. directory to open.
  268. \(fn &optional PROJECT-ROOT)" t nil)
  269. (autoload 'projectile-recentf "projectile" "\
  270. Show a list of recently visited files in a project." t nil)
  271. (autoload 'projectile-configure-project "projectile" "\
  272. Run project configure command.
  273. Normally you'll be prompted for a compilation command, unless
  274. variable `compilation-read-command'. You can force the prompt
  275. with a prefix ARG.
  276. \(fn ARG)" t nil)
  277. (autoload 'projectile-compile-project "projectile" "\
  278. Run project compilation command.
  279. Normally you'll be prompted for a compilation command, unless
  280. variable `compilation-read-command'. You can force the prompt
  281. with a prefix ARG.
  282. \(fn ARG)" t nil)
  283. (autoload 'projectile-test-project "projectile" "\
  284. Run project test command.
  285. Normally you'll be prompted for a compilation command, unless
  286. variable `compilation-read-command'. You can force the prompt
  287. with a prefix ARG.
  288. \(fn ARG)" t nil)
  289. (autoload 'projectile-install-project "projectile" "\
  290. Run project install command.
  291. Normally you'll be prompted for a compilation command, unless
  292. variable `compilation-read-command'. You can force the prompt
  293. with a prefix ARG.
  294. \(fn ARG)" t nil)
  295. (autoload 'projectile-package-project "projectile" "\
  296. Run project package command.
  297. Normally you'll be prompted for a compilation command, unless
  298. variable `compilation-read-command'. You can force the prompt
  299. with a prefix ARG.
  300. \(fn ARG)" t nil)
  301. (autoload 'projectile-run-project "projectile" "\
  302. Run project run command.
  303. Normally you'll be prompted for a compilation command, unless
  304. variable `compilation-read-command'. You can force the prompt
  305. with a prefix ARG.
  306. \(fn ARG)" t nil)
  307. (autoload 'projectile-repeat-last-command "projectile" "\
  308. Run last projectile external command.
  309. External commands are: `projectile-configure-project',
  310. `projectile-compile-project', `projectile-test-project',
  311. `projectile-install-project', `projectile-package-project',
  312. and `projectile-run-project'.
  313. If the prefix argument SHOW_PROMPT is non nil, the command can be edited.
  314. \(fn SHOW-PROMPT)" t nil)
  315. (autoload 'projectile-switch-project "projectile" "\
  316. Switch to a project we have visited before.
  317. Invokes the command referenced by `projectile-switch-project-action' on switch.
  318. With a prefix ARG invokes `projectile-commander' instead of
  319. `projectile-switch-project-action.'
  320. \(fn &optional ARG)" t nil)
  321. (autoload 'projectile-switch-open-project "projectile" "\
  322. Switch to a project we have currently opened.
  323. Invokes the command referenced by `projectile-switch-project-action' on switch.
  324. With a prefix ARG invokes `projectile-commander' instead of
  325. `projectile-switch-project-action.'
  326. \(fn &optional ARG)" t nil)
  327. (autoload 'projectile-find-file-in-directory "projectile" "\
  328. Jump to a file in a (maybe regular) DIRECTORY.
  329. This command will first prompt for the directory the file is in.
  330. \(fn &optional DIRECTORY)" t nil)
  331. (autoload 'projectile-find-file-in-known-projects "projectile" "\
  332. Jump to a file in any of the known projects." t nil)
  333. (autoload 'projectile-cleanup-known-projects "projectile" "\
  334. Remove known projects that don't exist anymore." t nil)
  335. (autoload 'projectile-clear-known-projects "projectile" "\
  336. Clear both `projectile-known-projects' and `projectile-known-projects-file'." t nil)
  337. (autoload 'projectile-remove-known-project "projectile" "\
  338. Remove PROJECT from the list of known projects.
  339. \(fn &optional PROJECT)" t nil)
  340. (autoload 'projectile-remove-current-project-from-known-projects "projectile" "\
  341. Remove the current project from the list of known projects." t nil)
  342. (autoload 'projectile-add-known-project "projectile" "\
  343. Add PROJECT-ROOT to the list of known projects.
  344. \(fn PROJECT-ROOT)" t nil)
  345. (autoload 'projectile-ibuffer "projectile" "\
  346. Open an IBuffer window showing all buffers in the current project.
  347. Let user choose another project when PROMPT-FOR-PROJECT is supplied.
  348. \(fn PROMPT-FOR-PROJECT)" t nil)
  349. (autoload 'projectile-commander "projectile" "\
  350. Execute a Projectile command with a single letter.
  351. The user is prompted for a single character indicating the action to invoke.
  352. The `?' character describes then
  353. available actions.
  354. See `def-projectile-commander-method' for defining new methods." t nil)
  355. (autoload 'projectile-browse-dirty-projects "projectile" "\
  356. Browse dirty version controlled projects.
  357. With a prefix argument, or if CACHED is non-nil, try to use the cached
  358. dirty project list.
  359. \(fn &optional CACHED)" t nil)
  360. (autoload 'projectile-edit-dir-locals "projectile" "\
  361. Edit or create a .dir-locals.el file of the project." t nil)
  362. (defvar projectile-mode nil "\
  363. Non-nil if Projectile mode is enabled.
  364. See the `projectile-mode' command
  365. for a description of this minor mode.
  366. Setting this variable directly does not take effect;
  367. either customize it (see the info node `Easy Customization')
  368. or call the function `projectile-mode'.")
  369. (custom-autoload 'projectile-mode "projectile" nil)
  370. (autoload 'projectile-mode "projectile" "\
  371. Minor mode to assist project management and navigation.
  372. When called interactively, toggle `projectile-mode'. With prefix
  373. ARG, enable `projectile-mode' if ARG is positive, otherwise disable
  374. it.
  375. When called from Lisp, enable `projectile-mode' if ARG is omitted,
  376. nil or positive. If ARG is `toggle', toggle `projectile-mode'.
  377. Otherwise behave as if called interactively.
  378. \\{projectile-mode-map}
  379. \(fn &optional ARG)" t nil)
  380. (define-obsolete-function-alias 'projectile-global-mode 'projectile-mode "1.0")
  381. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "projectile" '("??" "compilation-find-file-projectile-find-compilation-buffer" "def-projectile-commander-method" "delete-file-projectile-remove-from-cache" "projectile-")))
  382. ;;;***
  383. ;; Local Variables:
  384. ;; version-control: never
  385. ;; no-byte-compile: t
  386. ;; no-update-autoloads: t
  387. ;; coding: utf-8
  388. ;; End:
  389. ;;; projectile-autoloads.el ends here