I have some lines that I want alphabetically. For example, let's say I have a vim set command in a file:
set nowrap set number set expandtab set hlsearch set list
How would I alphabetically write these 5 lines? The result will look like this:
set expandtab set hlsearch set list set nowrap set number
source share