From 44012f61be350388591c0ebc94925cc822d9b112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Geis?= Date: Sat, 6 Nov 2021 01:07:15 +0100 Subject: [PATCH] api: re-order exports in index --- src/api/index.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/api/index.ts b/src/api/index.ts index 74c653c..c62cc75 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -22,19 +22,22 @@ export * from "./search/range"; export * from "./search/word"; export * from "./types"; -export { firstVisibleLine, middleVisibleLine, lastVisibleLine } from "./lines"; -export * as Lines from "./lines"; - /** - * Operations on `vscode.Selection`s. + * Operations on lines in `vscode`. */ -export * as Selections from "./selections"; +export * as Lines from "./lines"; +export { firstVisibleLine, middleVisibleLine, lastVisibleLine } from "./lines"; /** * Operations on `vscode.Position`s. */ export * as Positions from "./positions"; +/** + * Operations on `vscode.Selection`s. + */ +export * as Selections from "./selections"; + /** * Returns the module exported by the extension with the given identifier. */