Allow sorting of #showlocation. Resolve #29

This commit is contained in:
raeleus 2024-10-03 22:51:14 -07:00
parent 457f0aca0e
commit 112b72d4c8
2 changed files with 19 additions and 5 deletions

View file

@ -1466,6 +1466,9 @@ function doRemoveLocation(command) {
}
function doShowLocations(command) {
var arg0 = searchArgument(command, /^sort$/gi)
state.sortLocations = arg0 != null
state.show = "locations"
return " "
}