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
Hi,
I've just tested neotree. It's a very promising package, good work!
But I've find an annoying behavior: when files have long names, the display is quite clumsy and hard to read.
In my opinion, long name should be shortened. For example:
verylongnameofafile.pdf
should be displayed
verylo(....).pdf
What do you think?
The text was updated successfully, but these errors were encountered:
I have the same issue.
Neotree looks great, thank you guys! I would like to continue use it, so maybe you can advice some way to shorten long file names, or truncate them.
I have tried to truncate lines using neotree-mode-hook, but this wasn't work for me unfortunately.
neotree-mode-hook
my code:
(add-hook 'neotree-mode-hook (lambda () (progn (setq truncate-lines t) (setq word-wrap nil))))
Sorry, something went wrong.
Try this
(add-hook 'neo-after-create-hook #'(lambda (_) (with-current-buffer (get-buffer neo-buffer-name) (setq truncate-lines t) (setq word-wrap nil) (make-local-variable 'auto-hscroll-mode) (setq auto-hscroll-mode nil))))
No branches or pull requests
Hi,
I've just tested neotree. It's a very promising package, good work!
But I've find an annoying behavior: when files have long names, the display is quite clumsy and hard to read.
In my opinion, long name should be shortened. For example:
should be displayed
What do you think?
The text was updated successfully, but these errors were encountered: