Skip to content

Commit 8fc5ab2

Browse files
committed
Merge branch 'fix-typos' of https://github.com/shfc/kitty
2 parents 399354c + 51a08d2 commit 8fc5ab2

11 files changed

+14
-14
lines changed

docs/clipboard.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ and human friendly name with ``type=write`` and ``type=read`` requests. The
153153
terminal can then ask the user to allow all future requests using that
154154
password. If the user agrees, future requests on the same tty will be
155155
automatically allowed by the terminal. The editor or other program using
156-
this facility should ideally use a password randomnly generated at startup,
156+
this facility should ideally use a password randomly generated at startup,
157157
such as a UUID4. However, terminals may implement permanent/stored passwords.
158158
Users can then configure terminal programs they trust to use these password.
159159

@@ -218,15 +218,15 @@ other characters must be stripped out from the id by the terminal emulator
218218
before retransmitting it.
219219

220220
Note that when using a terminal multiplexer it is possible for two different
221-
programs to overwrite each others clipboard requests. This is fundamentally
221+
programs to overwrite each other's clipboard requests. This is fundamentally
222222
unavoidable since the system clipboard is a single global shared resource.
223-
However, there is an additional complication where responses form this protocol
223+
However, there is an additional complication where responses from this protocol
224224
could get lost if, for instance, multiple write requests are received
225225
simultaneously. It is up to well designed multiplexers to ensure that only a
226226
single request is in flight at a time. The multiplexer can abort requests by
227227
sending back the ``EBUSY`` error code indicating some other window is trying
228228
to access the clipboard.
229229

230-
When the terminal sends an unsolicited paste event beause the user triggerred
230+
When the terminal sends an unsolicited paste event because the user triggered
231231
a paste and the 5522 mode is enabled, there will be no associated id. In this
232232
case, the multiplexer must forward the event to the currently active window.

docs/color-stack.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ This indicates that the foreground color is red and the cursor color is
103103
undefined (typically the cursor takes the color of the text under it and the
104104
text takes the color of the background).
105105

106-
If the terminal does not know a field that a client send to it for a query it
106+
If the terminal does not know a field that a client sends to it for a query it
107107
must respond back with the ``field=?``, that is, it must send back a question
108108
mark as the value.
109109

docs/desktop-notifications.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ the set :code:`a-zA-Z0-9-_/\+.,(){}[]*&^%$#@!`~`. The payload must be
2525
interpreted based on the metadata section. The two semi-colons *must* always be
2626
present even when no metadata is present.
2727

28-
Before going into details, lets see how one can display a simple, single line
28+
Before going into details, let's see how one can display a simple, single line
2929
notification from a shell script::
3030

3131
printf '\x1b]99;;Hello world\x1b\\'

docs/file-transfer-protocol.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ receiving::
127127

128128
The client must then wait for responses from the terminal emulator. It
129129
is an error to send anymore commands to the terminal until an ``OK``
130-
response is received from the terminal. The terminal wait for the user to accept
130+
response is received from the terminal. The terminal waits for the user to accept
131131
the request. If accepted, it sends::
132132

133133
← action=status id=someid status=OK

docs/graphics-protocol.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ Here we tell the terminal emulator to read compressed image data from
364364
the specified shared memory object.
365365
366366
The client can also specify a size and offset to tell the terminal emulator
367-
to only read a part of the specified file. The is done using the ``S`` and ``O``
367+
to only read a part of the specified file. This is done using the ``S`` and ``O``
368368
keys respectively. For example::
369369
370370
<ESC>_Gs=10,v=2,t=s,S=80,O=10;<encoded /some-shared-memory-name><ESC>\

docs/integrations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Allow injecting passwords from 1Password into kitty.
340340
`BitWarden <https://github.com/dnanhkhoa/kitty-password-manager>`__
341341
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
342342

343-
Inject passwords from ButWarden into kitty
343+
Inject passwords from BitWarden into kitty
344344

345345
Miscellaneous
346346
------------------

docs/launch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ create :file:`~/.config/kitty/mywatcher.py` and use :option:`launch --watcher` =
130130
131131
def on_load(boss: Boss, data: dict[str, Any]) -> None:
132132
# This is a special function that is called just once when this watcher
133-
# module is first loaded, can be used to perform any initializztion/one
133+
# module is first loaded, can be used to perform any initialization/one
134134
# time setup. Any exceptions in this function are printed to kitty's
135135
# STDERR but otherwise ignored.
136136
...

docs/mapping.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ running an editor::
194194

195195
map --when-focus-on var:in_editor kitty_mod+c
196196

197-
In order to make this work, you need to configure your editor as show below:
197+
In order to make this work, you need to configure your editor as shown below:
198198

199199
.. tab:: vim
200200

docs/misc-protocol.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Reporting when the mouse leaves the window
3535
----------------------------------------------
3636

3737
kitty extends the SGR Pixel mouse reporting protocol created by xterm to
38-
also report when the mouse leaves the window. This is event is delivered
38+
also report when the mouse leaves the window. This event is delivered
3939
encoded as a normal SGR pixel event except that the eight bit is set on the
4040
first number. Additionally, bit 5 is set to indicate this is a motion related event.
4141
The remaining bits 1-7 (except 5) are used to encode button and modifier information.

docs/sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ documentation for them.
319319

320320
``layout name``
321321
Set the layout for the current tab to the specified layout, including any
322-
specified options, see :doc:`layouts` for the available alyouts and
322+
specified options, see :doc:`layouts` for the available layouts and
323323
options.
324324

325325
``new_os_window``

0 commit comments

Comments
 (0)