diff options
| author | Alex Fischer <34625198+al3xfischer@users.noreply.github.com> | 2021-04-28 20:15:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-28 20:15:25 +0200 |
| commit | ad30a7b085afd31c66461b61e268aa88527199bb (patch) | |
| tree | 4e8ec58d18e5e01d7727a36a2b476f9bf9d69e0d /lua | |
| parent | 38765f68db37a8fd9769db9cb54a5508658e9a5c (diff) | |
fix: file browser navigate to parent directory on windows (#786)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/builtin/files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin/files.lua b/lua/telescope/builtin/files.lua index bcdf8b6..f9c3ed9 100644 --- a/lua/telescope/builtin/files.lua +++ b/lua/telescope/builtin/files.lua @@ -247,7 +247,7 @@ files.file_browser = function(opts) table.insert(data, typ == 'directory' and (entry .. os_sep) or entry) end }) - table.insert(data, 1, '../') + table.insert(data, 1, '..' .. os_sep) return finders.new_table { results = data, |
