alefragnani / vscode-bookmarks

Bookmarks Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=alefragnani.Bookmarks
GNU General Public License v3.0
1.65k stars 161 forks source link

[FEATURE] - Bookmarks sorted in the order they were added #695

Closed xstar2091 closed 4 months ago

xstar2091 commented 4 months ago

Currently, bookmarks are added in order of line number. For example 1 add bookmark 'a' 2 3 add bookmark 'c' 4 5 add bookmark 'b' I add bookmakr 'a' at line 1, and then add bookmark 'b' at line 5, and then add the last bookmark 'c' The bookmakrs shown in the explorer is 'a' (Ln 1, Col 1) 'c' (Ln 3, Col 1) 'b' (Ln 5, Col 1) Will you please sort bookmarks in order of line number? In this case, the bookmarks shown in explorer is ‘a' (Ln 1, Col 1) 'b' (Ln 5, Col 1) 'c' (Ln 3, Col 1)

alefragnani commented 4 months ago

Duplicate of #694