-
-
Notifications
You must be signed in to change notification settings - Fork 580
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
;; Author: Bozhidar Batsov <[email protected]> | ||
;; URL: https://github.com/bbatsov/projectile | ||
;; Keywords: project, convenience | ||
;; Version: 1.1.0-snapshot | ||
;; Version: 2.0.0 | ||
;; Package-Requires: ((emacs "25.1") (pkg-info "0.4")) | ||
|
||
;; This file is NOT part of GNU Emacs. | ||
|
@@ -199,7 +199,7 @@ When nil Projectile will consider the current directory the project root." | |
:group 'projectile | ||
:type 'string) | ||
|
||
(make-obsolete-variable 'projectile-keymap-prefix "Use (define-key projectile-mode-map (kbd ...) 'projectile-command-map) instead." "1.1.0") | ||
(make-obsolete-variable 'projectile-keymap-prefix "Use (define-key projectile-mode-map (kbd ...) 'projectile-command-map) instead." "2.0.0") | ||
|
||
(defcustom projectile-cache-file | ||
(expand-file-name "projectile.cache" user-emacs-directory) | ||
|
@@ -468,15 +468,15 @@ Only file buffers are affected by this, as the update happens via | |
See also `projectile-mode-line-function' and `projectile-update-mode-line'." | ||
:group 'projectile | ||
:type 'boolean | ||
:package-version '(projectile . "1.1.0")) | ||
:package-version '(projectile . "2.0.0")) | ||
|
||
(defcustom projectile-mode-line-function 'projectile-default-mode-line | ||
"The function to use to generate project-specific mode-line. | ||
The default function adds the project name and type to the mode-line. | ||
See also `projectile-update-mode-line'." | ||
:group 'projectile | ||
:type 'function | ||
:package-version '(projectile . "1.1.0")) | ||
:package-version '(projectile . "2.0.0")) | ||
|
||
|
||
;;; Idle Timer | ||
|
@@ -1184,8 +1184,8 @@ function is executing." | |
(projectile-get-sub-projects-files directory vcs))) | ||
(t (projectile-files-via-ext-command directory (projectile-get-ext-command vcs)))))) | ||
|
||
(define-obsolete-function-alias 'projectile-dir-files-external 'projectile-dir-files-alien "1.1") | ||
(define-obsolete-function-alias 'projectile-get-repo-files 'projectile-dir-files-alien "1.1") | ||
(define-obsolete-function-alias 'projectile-dir-files-external 'projectile-dir-files-alien "2.0.0") | ||
(define-obsolete-function-alias 'projectile-get-repo-files 'projectile-dir-files-alien "2.0.0") | ||
|
||
(defun projectile-get-ext-command (vcs) | ||
"Determine which external command to invoke based on the project's VCS. | ||
|