h - Move left
j - Move down
k - Move up
l - Move right
$ - Move to end of line
0 - Move to beginning of line (including whitespace)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "ctrl+p", | |
"command": "-workbench.action.quickOpen" | |
}, | |
{ | |
"key": "ctrl+p", | |
"command": "-workbench.action.quickOpenNavigateNextInFilePicker", | |
"when": "inFilesPicker && inQuickOpen" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
listClass = '.ListPage__list___24Dl6'; | |
priceClass = 'WideVenueBanner__roughDelivery___2K1oP'; | |
function sortByPrice(aNode, bNode) { | |
const aText = aNode.getElementsByClassName(priceClass)[0].innerText; | |
const bText = bNode.getElementsByClassName(priceClass)[0].innerText; | |
return aText.localeCompare(bText); | |
} | |
function sortCards() { |
OlderNewer