-
Notifications
You must be signed in to change notification settings - Fork 13
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
short_file_names cannot hide all path #32
Comments
Hello. Thanks for the feedback. This feature does not work on Windows yet. As for the vsplit/split mappings, you should not have any problems. Maybe those mappings are overridden somewhere in normal mode. |
@j-morano |
@j-morano I checked the |
I'm having the same issue in Fedora. Short_file_names doesn't work, shows me the full path. |
I am using Fedora, and it is working. Can you provide more details? So I can try to reproduce it. |
I created the branch windows-separator and added a commit to try to solve this issue. Can you give it a try to check if the problem perists? |
When I have multiple nested folders, it become very long and continue on the second line. config {
"j-morano/buffer_manager.nvim",
dependencies = "nvim-lua/plenary.nvim",
lazy = false,
keys = {
{ "<leader>db", ":Bdelete<CR>", desc = "Delete Buffer" },
},
config = function()
require("buffer_manager").setup({
vim.keymap.set(
{ "t", "n" },
"<leader>fb",
require("buffer_manager.ui").toggle_quick_menu,
{ noremap = true, desc = "Buffers List" }
),
select_menu_item_commands = {
v = {
key = "<C-v>",
command = "vsplit",
},
h = {
key = "<C-h>",
command = "split",
},
},
focus_alternate_buffer = false,
short_file_names = true,
order_buffers = "filename",
loop_nav = true,
highlight = "Normal:BufferManagerBorder",
win_extra_options = {
winhighlight = "Normal:BufferManagerNormal",
},
})
end,
}, |
@j-morano I tested the commit 2b0e03e of branch 'windows-separator' It does not work like I thoght it would. It is the result of adding |
Thank you for your effort. I do not have access to a Windows machine, so I welcome any help to solve this issue. |
Thank you for you effort.
I'm windows 10 user with nvim-qt.
I installed this plugin and set
short_file_names = true
to show only filename + extension.But the behavior is the same with
short_file_names = false
.All lists show their path. If files are in subdirectory of current path, relative path is shown.
If files are in parent directory of current path, absolute path is shown.
Is It normal?
this is my configuraiton
one more question.,.
The vsplit / split mapping doesn't work. works as visual block only
The text was updated successfully, but these errors were encountered: