Skip to content

Commit 79e1100

Browse files
committed
Merge branch 'master' of https://github.com/lzybkr/PSReadLine
2 parents 8c574f3 + e866e89 commit 79e1100

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

PSReadLine/en-US/about_PSReadline.help.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ LONG DESCRIPTION
2020
* Bash style completion (optional in Cmd mode, default in Emacs mode)
2121
* Emacs yank/kill ring
2222
* PowerShell token based "word" movement and kill
23-
23+
2424
The following functions are available in the class [PSConsoleUtilities.PSConsoleReadLine]:
2525

2626
Cursor movement
@@ -88,7 +88,7 @@ LONG DESCRIPTION
8888

8989
ShellBackwardWord (Cmd: unbound Emacs: unbound)
9090

91-
Like BackardWord except word boundaries are defined by PowerShell token boundaries.
91+
Like BackwardWord except word boundaries are defined by PowerShell token boundaries.
9292

9393
GotoBrace (Cmd: <Ctrl+}> Emacs: unbound)
9494

@@ -285,12 +285,12 @@ LONG DESCRIPTION
285285
MenuComplete.
286286

287287
PossibleCompletions (Cmd: unbound Emacs: <Alt+Equals>)
288-
288+
289289
Display the list of possible completions.
290290

291291
SetMark (Cmd: unbound Emacs: <Alt+Space>)
292292

293-
Mark the current loction of the cursor for use in a subsequent editing command.
293+
Mark the current location of the cursor for use in a subsequent editing command.
294294

295295
ExchangePointAndMark (Cmd: unbound Emacs: <Ctrl+X,Ctrl+X>)
296296

@@ -365,7 +365,7 @@ LONG DESCRIPTION
365365
Add the most recently killed text to the input.
366366

367367
YankPop (Cmd: unbound Emacs: <Alt+Y>)
368-
368+
369369
If the previous operation was Yank or YankPop, replace the previously yanked
370370
text with the next killed text from the kill ring.
371371

@@ -411,7 +411,7 @@ LONG DESCRIPTION
411411
CharacterSearch (Cmd: <F3> Emacs: <Ctrl+]>)
412412

413413
Read a key and search forwards for that character. With an argument, search
414-
forwards for the nth occurance of that argument. With a negative argument,
414+
forwards for the nth occurrence of that argument. With a negative argument,
415415
searches backwards.
416416

417417
CharacterSearchBackward (Cmd: <Shift+F3> Emacs: <Alt+Ctrl+]>)
@@ -546,7 +546,7 @@ LONG DESCRIPTION
546546

547547
void Ding()
548548

549-
Perform the Ding action based on the users perference.
549+
Perform the Ding action based on the users preference.
550550

551551
void GetBufferState([ref] string input, [ref] int cursor)
552552
void GetBufferState([ref] Ast ast, [ref] Token[] tokens, [ref] ParseError[] parseErrors, [ref] int cursor)
@@ -577,7 +577,7 @@ LONG DESCRIPTION
577577

578578
string ReadLine(runspace remoteRunspace, System.Management.Automation.EngineIntrinsics engineIntrinsics)
579579

580-
This is the main entrypoint to PSReadline. It does not support recursion, so is not useful
580+
This is the main entry point to PSReadline. It does not support recursion, so is not useful
581581
in a custom key binding.
582582

583583
void RemoveKeyHandler(string[] key)
@@ -586,7 +586,7 @@ LONG DESCRIPTION
586586
custom key binding.
587587

588588
void Replace(int start, int length, string replacement)
589-
589+
590590
Replace some of the input. This operation supports undo/redo.
591591
This is preferred over Delete followed by Insert because it is treated as a single action
592592
for undo.
@@ -609,14 +609,14 @@ LONG DESCRIPTION
609609
[PSConsoleUtilities.PSConsoleReadLine]::TryGetArgAsInt($arg, [ref]$numericArg, 1)
610610

611611
POWERSHELL COMPATIBILITY
612-
612+
613613
PSReadline requires PowerShell version 3 or greater and the console host. It
614614
will not work in the ISE.
615615

616616
FEEDBACK
617617

618618
https://github.com/lzybkr/PSReadline
619-
619+
620620
CONTRIBUTING TO PSREADLINE
621621

622622
Feel free to submit a pull request or submit feedback on the github page.

0 commit comments

Comments
 (0)