Skip to content
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

Remove unused functions. #185

Merged
merged 1 commit into from
May 12, 2016
Merged

Remove unused functions. #185

merged 1 commit into from
May 12, 2016

Conversation

lucc
Copy link
Collaborator

@lucc lucc commented May 12, 2016

line_n() was not used since b8e8d98 and it
was the only place where tail was used.

If need be line_n() can also be reimplemented without tail with the help of
sed:

line_n() {
    line=$1
    shift
    sed -n "$line{p;q;}" "$@"
}

line_n() was not used since b8e8d98 and it
was the only place where tail was used.

If need be line_n() can also be reimplemented without tail with the help of
sed:

line_n() {
    line=$1
    shift
    sed -n "$line{p;q;}" "$@"
}
@rkitover
Copy link
Owner

I wouldn't remove tail just yet, it's used in vimcat for output streaming and may be needed in the future for other things as well. Also we can discuss this in the other PR.

@lucc
Copy link
Collaborator Author

lucc commented May 12, 2016

This PR only removes the tail functions and related code from vimpager. This code was never even used in vimcat. vimcat used the tail executable in $PATH all along and only requires the -f option which was also never checked in the bootstrapping code.

And this is not only about tail but also about line_n.

@rkitover
Copy link
Owner

Right, I mean once we finish the platform stuff I will use it to find the best version of tail in vimcat as well.

I'm perfectly happy to see line_n removed, but I don't want to remove tail until it is somewhere else.

rkitover added a commit that referenced this pull request May 12, 2016
Save the tail utility finding and syntax checking code to
prototypes/tail.sh in case it is ever needed in the future.

The PR in #185 removes it as it is not used anymore.
@rkitover
Copy link
Owner

@lucc ok I'm merging this, I saved a copy of the corrected tail code to prototypes/tail.sh in case it is ever needed.

Also I'm probably going to rewrite the output streaming code in vimcat to not use tail but a pipeline instead, so it won't be used there either.

@rkitover rkitover merged commit 8735656 into master May 12, 2016
@lucc
Copy link
Collaborator Author

lucc commented May 12, 2016

The code is also i the git history :)

@lucc lucc deleted the tail branch May 12, 2016 21:24
@rkitover
Copy link
Owner

@lucc I know, but I like to keep my experiments there, I'm going to factor them out into separate project(s) at some point.

Like for example I wanted to contribute my do_uudecode function to shar.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants