Skip to content

Commit e112da8

Browse files
Merge branch 'gitActions' of github.com:cursorless-dev/cursorless into gitActions
2 parents f0b91c3 + 03dadd8 commit e112da8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/common/src/types/TextEditor.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,25 +239,25 @@ export interface EditableTextEditor extends TextEditor {
239239
extractVariable(range?: Range): Promise<void>;
240240

241241
/**
242-
* Git accept conflict
242+
* Git accept conflict (use the range to resolve a conflict hunk)
243243
* @param range A {@link Range range}
244244
*/
245245
gitAccept(range?: Range): Promise<void>;
246246

247247
/**
248-
* Git revert
248+
* Git revert range
249249
* @param range A {@link Range range}
250250
*/
251251
gitRevert(range?: Range): Promise<void>;
252252

253253
/**
254-
* Git stage
254+
* Git stage range
255255
* @param range A {@link Range range}
256256
*/
257257
gitStage(range?: Range): Promise<void>;
258258

259259
/**
260-
* Git unstage
260+
* Git unstage range
261261
* @param range A {@link Range range}
262262
*/
263263
gitUnstage(range?: Range): Promise<void>;

0 commit comments

Comments
 (0)