We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae7a5e commit adcaa2eCopy full SHA for adcaa2e
denops/fall/util/mapping.ts
@@ -42,7 +42,7 @@ function formatMappingHelpPage(
42
const columnCount = Math.floor(width / columnWidth);
43
const recordWidth = columnWidth - spacer.length;
44
const records = mappings
45
- .toSorted((a, b) => `${a.lhs}${a.rhs}`.localeCompare(`${b.lhs}${b.rhs}`))
+ .toSorted((a, b) => `${a.rhs}${a.lhs}`.localeCompare(`${b.rhs}${b.lhs}`))
46
.map(({ lhs, rhs }) => {
47
const r = `${lhs.padStart(lhsWidth)}${operator}${rhs}`;
48
if (r.length < recordWidth) {
0 commit comments