Bekaboo / dropbar.nvim

IDE-like breadcrumbs, out of the box
GNU General Public License v3.0
990 stars 23 forks source link

fix: get_symbols error caused by drive letter on Windows #175

Closed MaoX-Yu closed 1 month ago

MaoX-Yu commented 1 month ago

Closes #174

After testing, both vim.api.nvim_buf_get_name() and vim.fn.getcwd() can return drive letters as c: or C:. So to standardize this, we will convert the drive letter to uppercase.

If has any suggestions, please let me know.