diff options
| author | Bozhidar Batsov <bozhidar@batsov.dev> | 2024-01-15 11:37:09 +0200 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.dev> | 2024-01-15 11:37:09 +0200 |
| commit | eb6b6813a16befe9f06144428b6db2dae15b2f04 (patch) | |
| tree | e9e06deeb83bd2aa0ab804080beef40b95f0ac73 | |
| parent | 0b9c9e802527dec8d0ed62167b380fb7524aa64f (diff) | |
Touch up the previous commit
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | projectile.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 132ef64..fc2f984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +### New features + * [#1870](https://github.com/bbatsov/projectile/pull/1870): Add package command for CMake projects. * [#1875](https://github.com/bbatsov/projectile/pull/1875): Add support for Sapling VCS. diff --git a/projectile.el b/projectile.el index 7057405..6bbe6ed 100644 --- a/projectile.el +++ b/projectile.el @@ -728,7 +728,8 @@ Set to nil to disable listing submodules contents." (defcustom projectile-sapling-command "sl locate -0 -I ." "Command used by projectile to get the files in a Sapling project." :group 'projectile - :type 'string) + :type 'string + :package-version '(projectile . "2.9.0")) (defcustom projectile-fossil-command (concat "fossil ls | " (when (string-equal system-type |
