docs: fix more treesitter parsing errors

This commit is contained in:
Christian Clason 2024-06-08 17:12:16 +02:00
parent 6592873f77
commit a156038d70
3 changed files with 6 additions and 6 deletions

View File

@ -293,7 +293,7 @@ loaded by Vim: >
ftplugin/sql.vim ftplugin/sql.vim
syntax/sqlinformix.vim syntax/sqlinformix.vim
indent/sql.vim indent/sql.vim
> <
Notice indent/sqlinformix.sql was not loaded. There is no indent file Notice indent/sqlinformix.sql was not loaded. There is no indent file
for Informix, Vim loads the default files if the specified files does not for Informix, Vim loads the default files if the specified files does not
exist. exist.
@ -349,7 +349,7 @@ The defaults static maps are: >
The use of "<C-C>" can be user chosen by using the following in your |init.vim| The use of "<C-C>" can be user chosen by using the following in your |init.vim|
as it may not work properly on all platforms: > as it may not work properly on all platforms: >
let g:ftplugin_sql_omni_key = '<C-C>' let g:ftplugin_sql_omni_key = '<C-C>'
> <
The static maps (which are based on the syntax highlight groups) follow this The static maps (which are based on the syntax highlight groups) follow this
format: > format: >
imap <buffer> <C-C>k <C-\><C-O>:call sqlcomplete#Map('sqlKeyword')<CR><C-X><C-O> imap <buffer> <C-C>k <C-\><C-O>:call sqlcomplete#Map('sqlKeyword')<CR><C-X><C-O>
@ -664,7 +664,7 @@ your |init.vim|: >
filetype is changed temporarily to SQL, the sqlcompletion plugin filetype is changed temporarily to SQL, the sqlcompletion plugin
will cache the syntax groups listed in the List specified in this will cache the syntax groups listed in the List specified in this
option. option.
>
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
4.5 SQL Maps *sql-completion-maps* 4.5 SQL Maps *sql-completion-maps*

View File

@ -366,7 +366,7 @@ tag char note action in Normal mode ~
or start of putted text or start of putted text
|`]| `] 1 cursor to the end of last operated text or |`]| `] 1 cursor to the end of last operated text or
end of putted text end of putted text
|``| `` 1 cursor to the position before latest jump |``| "``" 1 cursor to the position before latest jump
|`{| `{ 1 cursor to the start of the current paragraph |`{| `{ 1 cursor to the start of the current paragraph
|`}| `} 1 cursor to the end of the current paragraph |`}| `} 1 cursor to the end of the current paragraph
|a| a 2 append text after the cursor N times |a| a 2 append text after the cursor N times
@ -1136,7 +1136,7 @@ tag command action ~
|:!!| :!! repeat last ":!" command |:!!| :!! repeat last ":!" command
|:#| :# same as ":number" |:#| :# same as ":number"
|:&| :& repeat last ":substitute" |:&| :& repeat last ":substitute"
|:star| :* use the last Visual area, like :'<,'> |:star| :* use the last Visual area, like ":'<,'>"
|:<| :< shift lines one 'shiftwidth' left |:<| :< shift lines one 'shiftwidth' left
|:=| := print the last line number |:=| := print the last line number
|:>| :> shift lines one 'shiftwidth' right |:>| :> shift lines one 'shiftwidth' right

View File

@ -87,7 +87,7 @@ The ":tags" command shows the list of tags that you traversed through:
1 1 write_line 8 write_block.c ~ 1 1 write_line 8 write_block.c ~
2 1 write_char 7 write_line.c ~ 2 1 write_char 7 write_line.c ~
> ~ > ~
> <
Now to go back. The CTRL-T command goes to the preceding tag. In the example Now to go back. The CTRL-T command goes to the preceding tag. In the example
above you get back to the "write_line" function, in the call to "write_char". above you get back to the "write_line" function, in the call to "write_char".
This command takes a count argument that indicates how many tags to jump This command takes a count argument that indicates how many tags to jump