GNU bug report logs -
#67186
[PATCH 0/6] *** Add vim plugins ***
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67186 in the body.
You can then email your comments to 67186 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Wed, 15 Nov 2023 01:58:04 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nathan Merkley <nathanmerkley <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 15 Nov 2023 01:58:04 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
This adds a handful of vim packages that I like to use.
Since this is my first time submitting a patch, apologies in advance if
I have done anything incorrectly, I'll be happy to correct anything I
did wrong
Nathan Merkley (6):
* gnu/packages/vim.scm (vim-commentary): New variable.
* gnu/packages/vim.scm (vim-guile): New variable
* gnu/packages/vim.scm (vim-dhall-vim): New variable
* gnu/packages/vim.scm (vim-mundo): New variable
* gnu/packages/vim.scm (vim-zig): New variable
* gnu/packages/vim.scm (vim-plantuml-syntax): New variable
gnu/packages/vim.scm | 168 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 168 insertions(+)
base-commit: bd0f2173210416e86281c1de8789e7cdab66dd57
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Thu, 07 Dec 2023 16:55:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 67186 <at> debbugs.gnu.org (full text, mbox):
Change-Id: I9435787b234f90cb3d59ff6b65b7a96a533aea03
---
gnu/packages/vim.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 469c8b64cb..d0877033b9 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1423,3 +1423,34 @@ (define-public vim-nerdcommenter
operations and styles which are invoked via key mappings and a menu. These
operations are available for most filetypes.")
(license license:cc0)))
+
+(define-public vim-commentary
+ (let ((commit "e87cd90dc09c2a203e13af9704bd0ef79303d755")
+ (revision "1"))
+ (package
+ (name "vim-commentary")
+ (version (string-append "1.3-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tpope/vim-commentary")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "09kzc89iwkgsi4wvjxk56fis462kkz5chcl9sl4hdbmpa1f41wy0"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "commentary.vim"))
+ (synopsis "Vim plugin for commenting out code")
+ (description
+ "Comment stuff out. Use gcc to comment out a line (takes a count), gc to
+comment out the target of a motion (for example, gcap to comment out a
+paragraph), gc in visual mode to comment out the selection, and gc in operator
+pending mode to target a comment. You can also use it as a command, either with
+a range like :7,17Commentary, or as part of a :global invocation like with
+:g/TODO/Commentary.")
+ (home-page "https://www.vim.org/scripts/script.php?script_id=3695")
+ (license license:vim))))
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Thu, 07 Dec 2023 16:55:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 67186 <at> debbugs.gnu.org (full text, mbox):
Change-Id: I2f69a563681693de9af563caa545f6421f61a093
---
gnu/packages/vim.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index d0877033b9..38e651388f 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1454,3 +1454,32 @@ (define-public vim-commentary
:g/TODO/Commentary.")
(home-page "https://www.vim.org/scripts/script.php?script_id=3695")
(license license:vim))))
+
+(define-public vim-guile
+ (let ((commit "f76959a9dbdc69cde018901de82ac5a3d443843c")
+ (revision "1"))
+ (package
+ (name "vim-guile")
+ (version (string-append "0.0.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/HiPhish/guile.vim")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "1pqlhssdnpd8ngjc5bssma7ddjhffvh8hj67gchmyyxr5jfxwdq9"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "guile.vim"))
+ (synopsis "Syntax highlighting for GNU Guile")
+ (description
+ "This plugin extends Vim's Scheme support to include the additions to
+the language provided by the GNU Guile implementation. The plugin automatically
+detects whether a Scheme file is a Guile file and adds syntax highlighting for
+Guile's special forms.")
+ (home-page "https://github.com/HiPhish/guile.vim")
+ (license license:expat))))
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Thu, 07 Dec 2023 16:55:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 67186 <at> debbugs.gnu.org (full text, mbox):
Change-Id: I7bb32594546eb61f781d69a308aa866e4ce78de9
---
gnu/packages/vim.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 38e651388f..44ffc7bef4 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1483,3 +1483,30 @@ (define-public vim-guile
Guile's special forms.")
(home-page "https://github.com/HiPhish/guile.vim")
(license license:expat))))
+
+(define-public vim-dhall-vim
+ (let ((commit "68500ef46ff3706f46c99db3be7a0c8abcf6a3ae")
+ (revision "1"))
+ (package
+ (name "vim-dhall-vim")
+ (version (string-append "0.0.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vmchale/dhall-vim")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "0lwna4kcq7davfvh3535n8wl9jxkjm7cg6jgpisd17kvagihh8qw"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "dhall-vim"))
+ (synopsis "Vim configuration for Dhall")
+ (description
+ "A vim plugin to provide support and syntax hightlighting for the Dhall
+programming language")
+ (home-page "https://github.com/vmchale/dhall-vim")
+ (license license:bsd-3))))
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Thu, 07 Dec 2023 16:55:03 GMT)
Full text and
rfc822 format available.
Message #17 received at 67186 <at> debbugs.gnu.org (full text, mbox):
Change-Id: Ic0a96540117c55731ef8f615e916a2ef41a9d0c0
---
gnu/packages/vim.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 44ffc7bef4..3f8e673b69 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1510,3 +1510,28 @@ (define-public vim-dhall-vim
programming language")
(home-page "https://github.com/vmchale/dhall-vim")
(license license:bsd-3))))
+
+(define-public vim-mundo
+ (let ((commit "b53d35fb5ca9923302b9ef29e618ab2db4cc675e")
+ (revision "1"))
+ (package
+ (name "vim-mundo")
+ (version (string-append "3.1.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/simnalamburt/vim-mundo")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "1dwrarcxrh8in78igm036lpvyww60c93vmmlk8h054i3v2p8vv59"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "Mundo"))
+ (synopsis "Vim undo tree visualizer")
+ (description "A Vim plugin to visualize the Vim undo tree")
+ (home-page "https://simnalamburt.github.io/vim-mundo/")
+ (license license:gpl2))))
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Thu, 07 Dec 2023 16:55:03 GMT)
Full text and
rfc822 format available.
Message #20 received at 67186 <at> debbugs.gnu.org (full text, mbox):
Change-Id: I90fa7377fa15a95553960aabef041ce31ce97650
---
gnu/packages/vim.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 3f8e673b69..054c23bc92 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1535,3 +1535,30 @@ (define-public vim-mundo
(description "A Vim plugin to visualize the Vim undo tree")
(home-page "https://simnalamburt.github.io/vim-mundo/")
(license license:gpl2))))
+
+(define-public vim-zig
+ (let ((commit "54c216e5306a5c3878a60596aacb94dca8652ab9")
+ (revision "1"))
+ (package
+ (name "vim-zig")
+ (version (string-append "0.0.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ziglang/zig.vim")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "1nxwjyn3ps3c2abffai5cql3czl4kah4cin0g30damy1k99ypncb"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "zig.vim"))
+ (synopsis "Vim configuration for Zig")
+ (description
+ "File detection and syntax highlighting for the zig programming
+language.")
+ (home-page "https://github.com/ziglang/zig.vim")
+ (license license:expat))))
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67186
; Package
guix-patches
.
(Thu, 07 Dec 2023 16:55:04 GMT)
Full text and
rfc822 format available.
Message #23 received at 67186 <at> debbugs.gnu.org (full text, mbox):
Change-Id: I3e116520239bb66b1140e5bbd40659b3681f77e6
---
gnu/packages/vim.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 054c23bc92..7886f63e97 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1562,3 +1562,32 @@ (define-public vim-zig
language.")
(home-page "https://github.com/ziglang/zig.vim")
(license license:expat))))
+
+(define-public vim-plantuml-syntax
+ (let ((commit "845abb56dcd3f12afa6eb47684ef5ba3055802b8")
+ (revision "1"))
+ (package
+ (name "vim-plantuml-syntax")
+ (version (string-append "0.0.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/aklt/plantuml-syntax")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32 "0d2frv6knkj4bjavq2c2kx8qdnmcq0d8l04a5z7bpqwkmrrhd31f"))))
+ (build-system vim-build-system)
+ (arguments
+ (list
+ #:plugin-name "plantuml-syntax"))
+ (synopsis "Syntax highlighting for PlantUML")
+ (description
+ "This is a vim syntax file for PlantUML. The filetype will be set to
+plantuml for *.pu, *.uml, *.puml, *.iuml or *.plantuml files or if the first
+line of a file contains @@startuml. Additionally the makeprg is set to plantuml
+assuming you have this executable in your path.")
+ (home-page "https://github.com/aklt/plantuml-syntax")
+ (license license:vim))))
--
2.41.0
Reply sent
to
Greg Hogan <code <at> greghogan.com>
:
You have taken responsibility.
(Wed, 09 Jul 2025 03:52:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Nathan Merkley <nathanmerkley <at> gmail.com>
:
bug acknowledged by developer.
(Wed, 09 Jul 2025 03:52:02 GMT)
Full text and
rfc822 format available.
Message #28 received at 67186-done <at> debbugs.gnu.org (full text, mbox):
On Wed, Nov 15, 2023 at 1:42 AM Nathan Merkley <nathanmerkley <at> gmail.com> wrote:
>
> This adds a handful of vim packages that I like to use.
>
> Since this is my first time submitting a patch, apologies in advance if
> I have done anything incorrectly, I'll be happy to correct anything I
> did wrong
>
> Nathan Merkley (6):
> * gnu/packages/vim.scm (vim-commentary): New variable.
> * gnu/packages/vim.scm (vim-guile): New variable
> * gnu/packages/vim.scm (vim-dhall-vim): New variable
> * gnu/packages/vim.scm (vim-mundo): New variable
> * gnu/packages/vim.scm (vim-zig): New variable
> * gnu/packages/vim.scm (vim-plantuml-syntax): New variable
>
> gnu/packages/vim.scm | 168 +++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 168 insertions(+)
>
>
> base-commit: bd0f2173210416e86281c1de8789e7cdab66dd57
> --
> 2.41.0
Pushed as bbf584b1ec875db5cf5fea9acb0384f23227ba60^..0eb7f3d98936f6aeef76b45ef08da987cf7d212a.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 06 Aug 2025 11:24:12 GMT)
Full text and
rfc822 format available.
This bug report was last modified 13 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.