Skip to content

Commit bab25ea

Browse files
bagyi0vim-scripts
authored andcommitted
Version 6.01
Posted by David Fishburn Bug Fixes --------- - On dbext startup an error was reported indicating mapleader was not defined (Matt).
1 parent 3de15fd commit bab25ea

File tree

5 files changed

+53
-738
lines changed

5 files changed

+53
-738
lines changed

autoload/dbext.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
" dbext.vim - Commn Database Utility
22
" Copyright (C) 2002-7, Peter Bagyinszki, David Fishburn
33
" ---------------------------------------------------------------
4-
" Version: 6.00
4+
" Version: 6.01
55
" Maintainer: David Fishburn <[email protected]>
66
" Authors: Peter Bagyinszki <[email protected]>
77
" David Fishburn <[email protected]>
8-
" Last Modified: Thu 24 Apr 2008 10:25:55 PM Eastern Daylight Time
8+
" Last Modified: Tue 29 Apr 2008 05:52:29 PM Eastern Daylight Time
99
" Based On: sqlplus.vim (author: Jamis Buck)
1010
" Created: 2002-05-24
1111
" Homepage: http://vim.sourceforge.net/script.php?script_id=356
@@ -37,7 +37,7 @@ if v:version < 700
3737
echomsg "dbext: Version 4.00 or higher requires Vim7. Version 3.50 can stil be used with Vim6."
3838
finish
3939
endif
40-
let g:loaded_dbext_auto = 600
40+
let g:loaded_dbext_auto = 601
4141

4242
" call confirm("Loaded dbext autoload", "&Ok")
4343
" Script variable defaults, these are used internal and are never displayed

autoload/dbext_dbi.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
" It adds transaction support and the ability
55
" to reach any database currently supported
66
" by Perl and DBI.
7-
" Version: 6.00
7+
" Version: 6.01
88
" Maintainer: David Fishburn <[email protected]>
99
" Authors: David Fishburn <[email protected]>
10-
" Last Modified: Thu 24 Apr 2008 10:20:55 PM Eastern Daylight Time
10+
" Last Modified: Tue 29 Apr 2008 05:52:52 PM Eastern Daylight Time
1111
" Created: 2007-05-24
1212
" Homepage: http://vim.sourceforge.net/script.php?script_id=356
1313
"
@@ -114,7 +114,7 @@ if !has('perl')
114114
let g:loaded_dbext_dbi_msg = 'Vim does not have perl support enabled'
115115
finish
116116
endif
117-
let g:loaded_dbext_dbi = 600
117+
let g:loaded_dbext_dbi = 601
118118

119119
if !exists("dbext_dbi_debug")
120120
let g:dbext_dbi_debug = 0

0 commit comments

Comments
 (0)