Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correctly extract project directory from project-current #3003

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion counsel.el
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

(require 'compile)
(require 'dired)
(require 'project)

(eval-when-compile
(require 'subr-x))
Expand Down Expand Up @@ -6410,7 +6411,7 @@ Use `projectile-project-root' to determine the root."
"Return root of current project or nil on failure.
Use `project-current' to determine the root."
(and (fboundp 'project-current)
(cdr (project-current))))
(project-root (project-current))))

(defun counsel--configure-root ()
"Return root of current project or nil on failure.
Expand Down