Commit 4403a9d7 authored by Robert Haas's avatar Robert Haas

Tab completion for \lo_import

Josh Kupershmidt
parent 42c80c69
......@@ -3359,7 +3359,8 @@ psql_completion(char *text, int start, int end)
strcmp(prev_wd, "\\ir") == 0 || strcmp(prev_wd, "\\include_relative") == 0 ||
strcmp(prev_wd, "\\o") == 0 || strcmp(prev_wd, "\\out") == 0 ||
strcmp(prev_wd, "\\s") == 0 ||
strcmp(prev_wd, "\\w") == 0 || strcmp(prev_wd, "\\write") == 0
strcmp(prev_wd, "\\w") == 0 || strcmp(prev_wd, "\\write") == 0 ||
strcmp(prev_wd, "\\lo_import") == 0
)
{
completion_charp = "\\";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment