Unlike other mapping entries, <Plug>(DBUI_SaveQuery) does not mention its default value <Leader>W.
Example:
*<Plug>(DBUI_SaveQuery)*
<Plug>(DBUI_SaveQuery)
This mapping is used in `sql` files to save the query in
`g:db_ui_save_location` for later use, since all queries are
written to temp folder by default. Once saved, it will be
available in the connection tree under `Saved queries` .
*<Plug>(DBUI_ExecuteQuery)*
<Plug>(DBUI_ExecuteQuery)
Execute query in sql buffer. Supports normal and visual mode.
Normal mode executes all content in a file, where visual mode
executes only the selected content.
By default, mapped to `<Leader>S`
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Unlike other mapping entries,
<Plug>(DBUI_SaveQuery)
does not mention its default value<Leader>W
.Example: