Skip to content

Add deprecation notice and metadata #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

=head1 NAME

Vim::Debug::Manual - Integrate the Perl debugger with Vim
Vim::Debug::Manual - Integrate the Perl debugger with Vim (DEPRECATED)

=head1 Deprecation Notice

Please note that this module is deprecated and no longer maintained.

=head1 What is VimDebug?

Expand Down
2 changes: 1 addition & 1 deletion bin/vdd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env perl
# PODNAME: vdd
# ABSTRACT: The Vim Debugger Daemon
# ABSTRACT: The Vim Debugger Daemon (DEPRECATED)
# VERSION

use strict;
Expand Down
4 changes: 3 additions & 1 deletion bin/vimdebug-install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env perl
# PODNAME: vimdebug-install
# ABSTRACT: Install VimDebug's Vim plugin and doc files.
# ABSTRACT: Install VimDebug's Vim plugin and doc files. (DEPRECATED)
# VERSION

=head1 SYNOPSIS
Expand All @@ -9,6 +9,8 @@

=head1 DESCRIPTION

Please note that this program is deprecated and no longer maintained.

This program installs VimDebug's Vim plugin and doc files in a Vim
runtimepath directory specified at invocation time.

Expand Down
1 change: 1 addition & 0 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ weaver_config = @FLORA
; Used in script/vim.
Dir::Self = 0

[Deprecated]
4 changes: 3 additions & 1 deletion lib/Vim/Debug.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ABSTRACT: Perl wrapper around a command line debugger
# ABSTRACT: Perl wrapper around a command line debugger (DEPRECATED)

=head1 SYNOPSIS

Expand All @@ -23,6 +23,8 @@

=head1 DESCRIPTION

Please note that this module is deprecated and no longer maintained.

If you are new to Vim::Debug please read the user manual,
L<Vim::Debug::Manual>, first.

Expand Down
4 changes: 3 additions & 1 deletion lib/Vim/Debug/Daemon.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ABSTRACT: Handle communication between a debugger and clients
# ABSTRACT: Handle communication between a debugger and clients (DEPRECATED)

=head1 SYNOPSIS

Expand All @@ -7,6 +7,8 @@

=head1 DESCRIPTION

Please note that this module is deprecated and no longer maintained.

If you are new to Vim::Debug please read the user manual,
L<Vim::Debug::Manual>, first.

Expand Down
2 changes: 1 addition & 1 deletion lib/Vim/Debug/Manual.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ABSTRACT: Integrate the Perl debugger with Vim
# ABSTRACT: Integrate the Perl debugger with Vim (DEPRECATED)

=head1 What is VimDebug?

Expand Down
4 changes: 3 additions & 1 deletion lib/Vim/Debug/Perl.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# ABSTRACT: Perl debugger interface.
# ABSTRACT: Perl debugger interface. (DEPRECATED)

=head1 DESCRIPTION

Please note that this module is deprecated and no longer maintained.

If you are new to Vim::Debug please read the user manual,
L<Vim::Debug::Manual>, first.

Expand Down
4 changes: 3 additions & 1 deletion lib/Vim/Debug/Protocol.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ABSTRACT: Everything needed for the VimDebug network protocol
# ABSTRACT: Everything needed for the VimDebug network protocol (DEPRECATED)

=head1 SYNOPSIS

Expand All @@ -16,6 +16,8 @@

=head1 DESCRIPTION

Please note that this module is deprecated and no longer maintained.

If you are new to Vim::Debug please read the user manual,
L<Vim::Debug::Manual>, first.

Expand Down
4 changes: 3 additions & 1 deletion script/vdvim
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

=head1 NAME

vdvim - Launch a minimal vim/gvim with VimDebug development files.
vdvim - Launch a minimal vim/gvim with VimDebug development files. (DEPRECATED)

=head1 SYNOPSIS

vdvim [-g] [-m] [$some_file_to_edit]

=head1 DESCRIPTION

Please note that this program is deprecated and no longer maintained.

This program is useful for VimDebug developers to try out things. It
launches Vim with the VimDebug development code with no interference
whatsoever from any other Vim module or setup, since it loads no vimrc
Expand Down
4 changes: 3 additions & 1 deletion t/lib/Vim/Debug/Client.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ABSTRACT: A Vim::Debug client, for testing.
# ABSTRACT: A Vim::Debug client, for testing. (DEPRECATED)

=head1 SYNOPSIS

Expand All @@ -7,6 +7,8 @@

=head1 DESCRIPTION

Please note that this module is deprecated and no longer maintained.

This module implements a Vim::Debug client. The client communicates
with the Vim::Debug::Daemon. It's probably only useful for testing.

Expand Down