summaryrefslogtreecommitdiffstats
path: root/runtime/doc/ft_sql.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-07-25 15:42:07 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-25 15:42:07 +0100
commitb529cfbd04c02e31cfa88f2c8d88b5ff532d4f7d (patch)
treedc432e1b5129a6cdddf67ae6468e72315a0452b6 /runtime/doc/ft_sql.txt
parentcd6ad6439da2ee2d1a8a6934c9d69e9c2664ba55 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/ft_sql.txt')
-rw-r--r--runtime/doc/ft_sql.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/ft_sql.txt b/runtime/doc/ft_sql.txt
index 73d619c5d0..0bf98861e6 100644
--- a/runtime/doc/ft_sql.txt
+++ b/runtime/doc/ft_sql.txt
@@ -506,7 +506,7 @@ documentation.
Assuming you have followed the dbext-tutorial you can press <C-C>t to
display a list of tables. There is a delay while dbext is creating the table
list. After the list is displayed press <C-W>. This will remove both the
-popup window and the table name already chosen when the list became active. >
+popup window and the table name already chosen when the list became active.
4.3.1 Table Completion: *sql-completion-tables*
@@ -514,7 +514,7 @@ Press <C-C>t to display a list of tables from within the database you
have connected via the dbext plugin.
NOTE: All of the SQL completion popups support typing a prefix before pressing
the key map. This will limit the contents of the popup window to just items
-beginning with those characters. >
+beginning with those characters.
4.3.2 Column Completion: *sql-completion-columns*
@@ -587,13 +587,13 @@ popup a list of columns for the customer table. It does this by looking back
to the beginning of the select statement and finding a list of the tables
specified in the FROM clause. In this case it notes that in the string
"customer c", "c" is an alias for the customer table. The optional "AS"
-keyword is also supported, "customer AS c". >
+keyword is also supported, "customer AS c".
4.3.3 Procedure Completion: *sql-completion-procedures*
Similar to the table list, <C-C>p, will display a list of stored
-procedures stored within the database. >
+procedures stored within the database.
4.3.4 View Completion: *sql-completion-views*