Skip to content

Commit

Permalink
better display for :UnicodeName
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Aug 30, 2012
1 parent dce426d commit 91dd631
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions autoload/unicode.vim
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -251,11 +251,10 @@ fu! unicode#Init(enable) "{{{1
echo "Unicode Completion " . (a:enable?'ON':'OFF') echo "Unicode Completion " . (a:enable?'ON':'OFF')
endfu endfu


fu <sid>OutputMessage(msg) " {{{1 fu! <sid>OutputMessage(msg) " {{{1
redraw redraw
echohl Title " Save message in message history
echo a:msg echom a:msg
echohl Normal
endfu endfu


fu! unicode#GetUniChar() "{{{1 fu! unicode#GetUniChar() "{{{1
Expand Down
4 changes: 2 additions & 2 deletions post.pl
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ()


my $sid=2822; my $sid=2822;
my $file; my $file;
my @files=glob('*.vba'); my @files=glob('*.vmb');
#my $scriptversion=shift @ARGV; #my $scriptversion=shift @ARGV;
my $scriptversion = 0; my $scriptversion = 0;
my $versioncomment=shift @ARGV; my $versioncomment=shift @ARGV;
Expand All @@ -32,7 +32,7 @@ ()


my @userpasswordpair = GetPassword(); my @userpasswordpair = GetPassword();
for (@files) { for (@files) {
my $f = $_ if [ -f $_ ] && $_ =~ /\w+-[^.]+\.(\d+)\.vba/; my $f = $_ if [ -f $_ ] && $_ =~ /\w+-[^.]+\.(\d+)\.vmb/;
if ($1 > $scriptversion) { if ($1 > $scriptversion) {
$scriptversion=$1; $scriptversion=$1;
$file = $f; $file = $f;
Expand Down

0 comments on commit 91dd631

Please sign in to comment.