Skip to content

Commit 80a5123

Browse files
Fritz Mehnervim-scripts
authored andcommitted
Version 3.10
- Resolve $HOME for linked home directories. - Wrong insertion for parameter substitution "match beginning; del longest part" (thanks to John Orr). - Other minor bugs fixed.
1 parent 91844ea commit 80a5123

File tree

6 files changed

+197
-198
lines changed

6 files changed

+197
-198
lines changed

README.bashsupport

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README for bash-support.vim (Version 3.9) / December 27 2011
1+
README for bash-support.vim (Version 3.10) / May 31 2012
22

33
* INSTALLATION
44
* RELEASE NOTES
@@ -136,11 +136,11 @@ Look at the bashsupport help with
136136
+-----------------------------------------------+
137137

138138
=======================================================================================
139-
RELEASE NOTES FOR VERSION 3.9
139+
RELEASE NOTES FOR VERSION 3.10
140140
=======================================================================================
141-
- Hotkey renamed: \st -> \su
142-
- New global variable allows loading menus only with filetype 'sh'.
143-
- Comments: echo "<line>" escapes double quotes in original text.
141+
- Resolve $HOME for linked home directories.
142+
- Wrong insertion for parameter substitution "match beginning; del longest
143+
part" (thanks to John Orr).
144144
- Other minor bugs fixed.
145145

146146
=======================================================================================

doc/ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
=======================================================================================
2+
RELEASE NOTES FOR VERSION 3.9
3+
=======================================================================================
4+
- Hotkey renamed: \st -> \su
5+
- New global variable allows loading menus only with filetype 'sh'.
6+
- Comments: echo "<line>" escapes double quotes in original text.
7+
- Other minor bugs fixed.
8+
19
=======================================================================================
210
RELEASE NOTES FOR VERSION 3.8
311
=======================================================================================

doc/bash-hot-keys.pdf

23 Bytes
Binary file not shown.

doc/bash-hot-keys.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
99
%% Copyright: Copyright (C) 2003-2010 Dr.-Ing. Fritz Mehner ([email protected])
1010
%% Version: see PluginVersion (below)
11-
%% Revision: $Id: bash-hot-keys.tex,v 1.39 2011/12/27 12:22:08 mehner Exp $
11+
%% Revision: $Id: bash-hot-keys.tex,v 1.40 2012/06/01 07:47:06 mehner Exp $
1212
%% Created: 09.06.2003
1313
%%
1414
%% Notes:
1515
%%
1616
%%=====================================================================================
1717

18-
\newcommand{\PluginVersion}{3.9}
19-
\newcommand{\ReleaseDate}{December 2011}
18+
\newcommand{\PluginVersion}{3.10}
19+
\newcommand{\ReleaseDate}{\today}
2020
\newcommand{\Rep}{{\scriptsize{[n]}}}
2121

2222
\documentclass[oneside,11pt,a4paper,DIV18]{scrartcl}

doc/bashsupport.txt

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
*bashsupport.txt* Bash Support December 3 2011
1+
*bashsupport.txt* Bash Support May 31 2012
22

33
bash Support *bash-support* *bashsupport*
4-
Plugin version 3.9
4+
Plugin version 3.10
55
for Vim version 7.0 and above
66
Fritz Mehner <[email protected]>
77

@@ -47,7 +47,6 @@ writing shell scripts. This plugin can be used for Bash version 4.0.
4747
4.2 Global variables |bashsupport-custom-variables|
4848
4.3 The root menu |bashsupport-custom-root|
4949
4.4 System-wide installation |bashsupport-system-wide|
50-
4.5 Non-standard installation |bashsupport-non-standard|
5150
5. Template files and tags |bashsupport-templates|
5251
5.1 Template files |bashsupport-templates-files|
5352
5.2 Macros |bashsupport-templates-macros|
@@ -555,15 +554,15 @@ goes to the HOME directory. The otput destination will be shown in a message.
555554
The print header contains date and time for the current locale. The definition
556555
used is
557556

558-
let s:C_Printheader = "%<%f%h%m%< %=%{strftime('%x %X')} Page %N"
557+
let s:BASH_Printheader = "%<%f%h%m%< %=%{strftime('%x %X')} Page %N"
559558

560559
The current locale can be overwritten by changing the language, e.g.
561560

562561
:language C
563562

564563
or by setting a global variable in the file '.vimrc', e.g. :
565564

566-
let g:C_Printheader = "%<%f%h%m%< %=%{strftime('%x %X')} SEITE %N"
565+
let g:BASH_Printheader = "%<%f%h%m%< %=%{strftime('%x %X')} SEITE %N"
567566

568567
See :h printheader and :h strftime() for more details.
569568

@@ -1033,19 +1032,6 @@ You may want to copy the snippets coming with this plugin (in
10331032
$VIM/vimfiles/bash-support/codesnippets) into the new directory or to set a
10341033
link to the global directory.
10351034

1036-
------------------------------------------------------------------------------
1037-
4.5 Non-standard installation *bashsupport-non-standard*
1038-
------------------------------------------------------------------------------
1039-
1040-
The place to install this plugin package is the directory "$HOME/.vim". For
1041-
convenience the directory tree "$HOME/.vim/bash-support/..." can be moved to
1042-
another place. In this case the new base directory has to be specified in
1043-
"$HOME/.vimrc", e.g.
1044-
1045-
let g:BASH_Support_Root_Dir = "/home/username/xyz"
1046-
1047-
Please note that there is no trailing slash.
1048-
10491035
==============================================================================
10501036
5. TEMPLATE FILES AND TAGS *bashsupport-tempplates*
10511037
==============================================================================

0 commit comments

Comments
 (0)