We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Selectrum seems to handle ../ + partial filename completions oddly in eshell.
../
Given this dir structure:
~/ folder/ script.sh
And this init.el:
(require 'package) ;; Configure MELVA package repo (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/")) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) (package-initialize) (require 'use-package) (use-package selectrum :demand :init (selectrum-mode +1))
Perform these steps:
M-x eshell
cd ~/folder
../scr
Expected:
../script.sh
Actual:
script.sh
~/folder
This also happens when you replace the completion of ../script.sh with a completion of any other file in the parent dir, including other directories.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Selectrum seems to handle
../
+ partial filename completions oddly in eshell.Given this dir structure:
And this init.el:
Perform these steps:
M-x eshell
cd ~/folder
../scr
+ TABExpected:
../script.sh
.Actual:
script.sh
, which isn't part of the working dir~/folder
.This also happens when you replace the completion of
../script.sh
with a completion of any other file in the parent dir, including other directories.The text was updated successfully, but these errors were encountered: