You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: Advanced path shortening strategies
Implements a lot of differnet path displaying shorting strategies. Now
you will see paths like path/.4./next_path and it is configurable
## New strategies
- middle: "some/path/./next/path", "some/path/../next/path" showing max
3 dots in the middle
- middle_number: same as middle but starting from the 4 paths skipped
shows the number of skipped components
- end: preserves the start of the paths but truncaates not fitting end
* chore: Update docs for - feat: Advanced path shortening strategies
**FFF** stands for ~freakin fast fuzzy file finder~ (pick 3) and it is an opinionated fuzzy file picker for neovim. Just for files, but we'll try to solve file picking completely.
@@ -124,6 +123,12 @@ require('fff').setup({
124
123
preview_position='right', -- or 'left', 'right', 'top', 'bottom'
125
124
preview_size=0.5,
126
125
show_scrollbar=true, -- Show scrollbar for pagination
126
+
-- How to shorten long directory paths in the file list:
0 commit comments