unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#39776: Explain difference between vim and vim-full (feature request)
@ 2020-02-25  5:44 Jack Hill
  2020-02-25 15:30 ` Leo Famulari
  0 siblings, 1 reply; 5+ messages in thread
From: Jack Hill @ 2020-02-25  5:44 UTC (permalink / raw)
  To: 39776

Hi Guix,

This is an enhancement request: I think we should explain what vim-full 
provides over vim in the package description. What do you think?

All the best,
Jack

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#39776: Explain difference between vim and vim-full (feature request)
  2020-02-25  5:44 bug#39776: Explain difference between vim and vim-full (feature request) Jack Hill
@ 2020-02-25 15:30 ` Leo Famulari
  2020-02-25 16:32   ` Jack Hill
  0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2020-02-25 15:30 UTC (permalink / raw)
  To: Jack Hill; +Cc: 39776

On Tue, Feb 25, 2020 at 12:44:30AM -0500, Jack Hill wrote:
> Hi Guix,
> 
> This is an enhancement request: I think we should explain what vim-full
> provides over vim in the package description. What do you think?

Absolutely! Who will write the patch? :)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#39776: Explain difference between vim and vim-full (feature request)
  2020-02-25 15:30 ` Leo Famulari
@ 2020-02-25 16:32   ` Jack Hill
  2020-02-25 19:16     ` bug#39776: [PATCH] gnu: vim-full: Describe differences from vim Jack Hill
  0 siblings, 1 reply; 5+ messages in thread
From: Jack Hill @ 2020-02-25 16:32 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 39776


On Tue, 25 Feb 2020, Leo Famulari wrote:

> On Tue, Feb 25, 2020 at 12:44:30AM -0500, Jack Hill wrote:
>> Hi Guix,
>>
>> This is an enhancement request: I think we should explain what vim-full
>> provides over vim in the package description. What do you think?
>
> Absolutely! Who will write the patch? :)

I volunteer. I'll have to check what all vim-full provides first.

I did want to record the idea an the bug tracker before I forgot, and check 
that others thought it was a reasonable idea. Thanks for confirming that.

All the best,
Jack

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#39776: [PATCH] gnu: vim-full: Describe differences from vim
  2020-02-25 16:32   ` Jack Hill
@ 2020-02-25 19:16     ` Jack Hill
  2020-02-26 20:48       ` Marius Bakke
  0 siblings, 1 reply; 5+ messages in thread
From: Jack Hill @ 2020-02-25 19:16 UTC (permalink / raw)
  To: 39776

* gnu/packages/vim.scm (vim-full)[description]: New field. Explain what
  vim-full provides over vim.
---
 gnu/packages/vim.scm | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 67f245b26d..a94a677b25 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2019 HiPhish <hiphish@posteo.de>
 ;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
 ;;; Copyright © 2019, 2020 Jakub Kądziołka <kuba@kadziolka.net>
+;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -131,6 +132,8 @@
        ("tzdata" ,tzdata-for-tests)))
     (home-page "https://www.vim.org/")
     (synopsis "Text editor based on vi")
+    ;; The description shares language with the vim-full package. When making
+    ;; changes, check if the other description also needs to be updated.
     (description
      "Vim is a highly configurable text editor built to enable efficient text
 editing.  It is an improved version of the vi editor distributed with most UNIX
@@ -254,7 +257,21 @@ with the editor vim.")))
        ("python-3" ,python)
        ("ruby" ,ruby)
        ("tcl" ,tcl)
-       ,@(package-inputs vim)))))
+       ,@(package-inputs vim)))
+    ;; The description shares language with the vim package. When making
+    ;; changes, check if the other description also needs to be updated.
+    (description "Vim is a highly configurable text editor built to enable efficient text
+editing.  It is an improved version of the vi editor distributed with most UNIX
+systems.
+
+Vim is often called a \"programmer's editor,\" and so useful for programming
+that many consider it an entire IDE.  It's not just for programmers, though.
+Vim is perfect for all kinds of text editing, from composing email to editing
+configuration files.
+
+This package provides a version of Vim with many optional features enabled.
+It includes a graphical interface, @command{gvim}, and support for plugins
+written in the Python 3, Perl, Ruby, Tcl, and Lua programming languages.")))
 
 (define-public vim-neocomplete
   (package
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#39776: [PATCH] gnu: vim-full: Describe differences from vim
  2020-02-25 19:16     ` bug#39776: [PATCH] gnu: vim-full: Describe differences from vim Jack Hill
@ 2020-02-26 20:48       ` Marius Bakke
  0 siblings, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2020-02-26 20:48 UTC (permalink / raw)
  To: Jack Hill, 39776-done

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

Jack Hill <jackhill@jackhill.us> writes:

> * gnu/packages/vim.scm (vim-full)[description]: New field. Explain what
>   vim-full provides over vim.

Applied, thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-02-26 20:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-25  5:44 bug#39776: Explain difference between vim and vim-full (feature request) Jack Hill
2020-02-25 15:30 ` Leo Famulari
2020-02-25 16:32   ` Jack Hill
2020-02-25 19:16     ` bug#39776: [PATCH] gnu: vim-full: Describe differences from vim Jack Hill
2020-02-26 20:48       ` Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).