Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | feat(fs): add vim.fs.normalize() | Gregory Anders | 2022-05-31 |
| | |||
* | feat(fs): add vim.fs.find() | Gregory Anders | 2022-05-31 |
| | | | | | This is a pure Lua implementation of the Vim findfile() and finddir() functions without the special syntax. | ||
* | feat(fs): add vim.fs.dir() | Gregory Anders | 2022-05-31 |
| | | | | | This function is modeled after the path.dir() function from Penlight and the luafilesystem module. | ||
* | feat(fs): add vim.fs.basename() | Gregory Anders | 2022-05-31 |
| | |||
* | feat(fs): add vim.fs.dirname() | Gregory Anders | 2022-05-31 |
| | |||
* | feat(fs): add vim.fs.parents() | Gregory Anders | 2022-05-31 |
vim.fs.parents() is a Lua iterator that returns the next parent directory of the given file or directory on each iteration. |