Reputation: 185
I'm looking for a way to open a directory by calling vim (netrw) in a reverse order:
vim -c ":E -sort r" ~/some/dir
Upvotes: 0
Views: 118
Reputation: 185
Pass a setting variable:
vim -c "let g:netrw_sort_direction=\"reverse\"" ~/some/dir
Upvotes: 0