Skip to content

Commit c3f291a

Browse files
ItsNileshrh
authored andcommitted
fix more typos!
1 parent 5905f64 commit c3f291a

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

COMMANDS.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ Turn current selection into secondary selection.
249249

250250
*** meow-sync-grab
251251

252-
Sychronize the contents of secondary selection to the contents of current region.
252+
Synchronize the contents of secondary selection to the contents of current region.
253253

254254
Additionally, grab current position(thus you can come back later with ~meow-pop-grab~).
255255

EXPLANATION.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,4 +306,4 @@ Boon integrates with expand-region, multiple-cursors, avy, etc. I think we can h
306306
Kakoune.el is a package trying to bring kakoune's command to Emacs.
307307

308308
I like how kakoune deal with selections, but it use a both alt & shift a lot.
309-
Since I are going to use modal edit, I prefer to avoid modifer as much as possible.
309+
Since I are going to use modal edit, I prefer to avoid modifier as much as possible.

TUTORIAL.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ By default, MOTION state has no keybindings, except ~SPC~ is used as the leader
5050
Users may want a consistent keybindings for movement globally, for example: k/j to move up/down. Usually, you can bind k/j in MOTION state,
5151
however the original command on k/j is not accessible. To solve the problem, Meow introduce a simple solution.
5252

53-
For any keybinding you defined with ~meow-motion-overwrite-define-key~, the overwrited command will be bound to the key with ~hyper~ modifier.
53+
For any keybinding you defined with ~meow-motion-overwrite-define-key~, the overwritten command will be bound to the key with ~hyper~ modifier.
5454

5555
Here's an example: you want use ~j~ as ~next-line~ globally.
5656

@@ -141,7 +141,7 @@ Once BEACON state is enabled, you can create fake cursors/regions with movement
141141
- ~meow-visit/search~ will create regions for every same regexp.
142142
- ~meow-find/till~ will create cursors for every same characters.
143143
- ~meow-line~ will create regions for every N lines. (N is the number of selected lines).
144-
- ~meow-join~ will cerate cursors for each indentation beginning.
144+
- ~meow-join~ will create cursors for each indentation beginning.
145145

146146
Once you have fake cursors/regions, you have two options:
147147
- *quickly & simple* Switch to INSERT state and *start recording kmacro* with ~meow-insert/append/change~,

VIM_COMPARISON.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ each command there.
8686
| ? | ~negative-argument~ - ~meow-visit~ | backward search |
8787
| n | ~meow-search~ | next match |
8888
| p | | last match |
89-
89+
9090
* Switch into insert mode
9191

9292
| Vim | Meow | Description |
@@ -126,7 +126,7 @@ each command there.
126126

127127
* Macros
128128

129-
Vim uses registers to store macros. Meow only has a key to start a macro and afterwards play it. When a new macro is recorded the old one will be overriden.
129+
Vim uses registers to store macros. Meow only has a key to start a macro and afterwards play it. When a new macro is recorded the old one will be overridden.
130130
The reason is that meow just wraps the [[https://www.emacswiki.org/emacs/KeyboardMacros][default Emacs Macro]] behavior.
131131

132132
If you want to store more than macro you can store the last recorded macro under a name with the ~kmacro-name-last-macro~ command. You can afterwards execute that command from the ~M-x~ menu.

meow-beacon.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Non-nil BACKWARD means backward direction."
123123
(defun meow--beacon-apply-kmacros-from-insert ()
124124
"Apply kmacros in BEACON state, after exiting from insert.
125125
126-
This is treated separately beacuse we must enter each insert state the
126+
This is treated separately because we must enter each insert state the
127127
same way, and escape ecah time the macro is applied."
128128
(meow--beacon-apply-command (lambda ()
129129
(interactive)

meow-command.el

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ This command supports `meow-selection-command-fallback'."
176176
(meow--execute-kbd-macro meow--kbd-kill-ring-save))))
177177

178178
(defun meow-save-append ()
179-
"Copy, like command `kill-ring-save' but append to lastest kill.
179+
"Copy, like command `kill-ring-save' but append to latest kill.
180180
181181
This command supports `meow-selection-command-fallback'."
182182
(interactive)
@@ -1321,7 +1321,7 @@ To search backward, use \\[negative-argument]."
13211321
(meow--select))))
13221322

13231323
(defun meow-inner-of-thing (thing)
1324-
"Select inner (excluding delimeters) of THING."
1324+
"Select inner (excluding delimiters) of THING."
13251325
(interactive (list (meow-thing-prompt "Inner of: ")))
13261326
(save-window-excursion
13271327
(let ((back (equal 'backward (meow--thing-get-direction 'inner)))
@@ -1513,7 +1513,7 @@ Use negative argument for backward application."
15131513
(defun meow-start-kmacro ()
15141514
"Start kmacro.
15151515
1516-
This command is a replacement for build-in `kmacro-start-macro'."
1516+
This command is a replacement for built-in `kmacro-start-macro'."
15171517
(interactive)
15181518
(cond
15191519
((or (meow-normal-mode-p) (meow-motion-mode-p))
@@ -1524,7 +1524,7 @@ This command is a replacement for build-in `kmacro-start-macro'."
15241524
(defun meow-start-kmacro-or-insert-counter ()
15251525
"Start kmacro or insert counter.
15261526
1527-
This command is a replacement for build-in
1527+
This command is a replacement for built-in
15281528
`kmacro-start-macro-or-insert-counter'."
15291529
(interactive)
15301530
(cond
@@ -1537,7 +1537,7 @@ This command is a replacement for build-in
15371537
(defun meow-end-or-call-kmacro ()
15381538
"End kmacro recording or call macro.
15391539
1540-
This command is a replacement for build-in `kmacro-end-or-call-macro'."
1540+
This command is a replacement for built-in `kmacro-end-or-call-macro'."
15411541
(interactive)
15421542
(cond
15431543
((and meow--keypad-this-command defining-kbd-macro)
@@ -1554,7 +1554,7 @@ This command is a replacement for build-in `kmacro-end-or-call-macro'."
15541554
(defun meow-end-kmacro ()
15551555
"End kmacro recording or call macro.
15561556
1557-
This command is a replacement for build-in `kmacro-end-macro'."
1557+
This command is a replacement for built-in `kmacro-end-macro'."
15581558
(interactive)
15591559
(cond
15601560
(meow--keypad-this-command

meow-tutor.el

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@
304304
=================================================================
305305
306306
You can also move around things. In fact, Meow combines move and
307-
selection together. Everytime you select something, the cursor
307+
selection together. Every time you select something, the cursor
308308
will move to the beginning/end/inner/bound of things depending
309-
on your commands. Let's practise!
309+
on your commands. Let's practice!
310310
311311
* How to jump to the beginning of buffer quickly?
312312
@@ -335,7 +335,7 @@
335335
Note that Meow need the major mode for the programming language
336336
to find functions correctly. Then if you type \\[meow-bounds-of-thing] and \"d\" to
337337
select the whole function here, it won't work. Go to your
338-
favorite programming language mode and practise!
338+
favorite programming language mode and practice!
339339
340340
=================================================================
341341
= THE FIND/TILL COMMAND =
@@ -540,9 +540,9 @@
540540
541541
The visit command \\[meow-visit] can help to select a symbol in your
542542
buffer with completion. Once you have something selected with the \\[meow-visit] key,
543-
you can use \\[meow-search] to search for the next occurance of that selection.
543+
you can use \\[meow-search] to search for the next occurrence of that selection.
544544
545-
If you want a backword search, you can reverse the selection with \\[meow-reverse]
545+
If you want a backward search, you can reverse the selection with \\[meow-reverse]
546546
because \\[meow-search] will respect the direction of the current selection.
547547
548548
1. Move the cursor to the line below marked -->.
@@ -576,7 +576,7 @@
576576
577577
1. The first letter input, except x, c, h, m, g will be
578578
translated to C-c <key>.
579-
579+
580580
Example: a => C-c a
581581
582582
Press SPC a, call the command on C-c a, which is
@@ -608,7 +608,7 @@
608608
609609
Sometimes, you can omit this SPC when there's no ambiguity.
610610
611-
5. For any other cases, the input key will be translated to
611+
5. For any other cases, the input key will be translated to
612612
C-<key>.
613613
614614
Example: x f => C-x C-f

0 commit comments

Comments
 (0)