diff --git a/runtime/doc/usr_51.txt b/runtime/doc/usr_51.txt index 2eea6aab84..e83324a660 100644 --- a/runtime/doc/usr_51.txt +++ b/runtime/doc/usr_51.txt @@ -103,8 +103,8 @@ NOT LOADING It is possible that a user doesn't always want to load this plugin. Or the system administrator has dropped it in the system-wide plugin directory, but a -user has his own plugin he wants to use. Then the user must have a chance to -disable loading this specific plugin. These lines will make it possible: > +user has their own plugin they want to use. Then the user must have a chance +to disable loading this specific plugin. These lines will make it possible: > 7 if exists("g:loaded_typecorrect") 8 finish @@ -136,7 +136,7 @@ item can be used: > The "TypecorrAdd;" thing will do the work, more about that further on. -The user can set the "g:mapleader" variable to the key sequence that he wants +The user can set the "g:mapleader" variable to the key sequence that they want plugin mappings to start with. Thus if the user has done: > g:mapleader = "_" @@ -147,8 +147,8 @@ will be used, which is a backslash. Then a map for "\a" will be defined. Note that is used, this will cause an error message if the mapping already happened to exist. |:map-| -But what if the user wants to define his own key sequence? We can allow that -with this mechanism: > +But what if the user wants to define their own key sequence? We can allow +that with this mechanism: > 19 if !hasmapto('TypecorrAdd;') 20 map a TypecorrAdd; @@ -156,7 +156,7 @@ with this mechanism: > This checks if a mapping to "TypecorrAdd;" already exists, and only defines the mapping from "a" if it doesn't. The user then has a -chance of putting this in his vimrc file: > +chance of putting this in their vimrc file: > map ,c TypecorrAdd; @@ -262,7 +262,7 @@ Now let's add a user command to add a correction: > The user command is defined only if no command with the same name already exists. Otherwise we would get an error here. Overriding the existing user command with ":command!" is not a good idea, this would probably make the user -wonder why the command he defined himself doesn't work. |:command| +wonder why the command they defined themselves doesn't work. |:command| If it did happen you can find out who to blame with: > verbose command Correct @@ -494,7 +494,7 @@ An example of how to define functionality in a filetype plugin: > |hasmapto()| is used to check if the user has already defined a map to JavaImport;. If not, then the filetype plugin defines the default mapping. This starts with ||, which allows the user to select -the key(s) he wants filetype plugin mappings to start with. The default is a +the key(s) they want filetype plugin mappings to start with. The default is a backslash. "" is used to give an error message if the mapping already exists or overlaps with an existing mapping.