this updates editors/kakoune

Changelog since last version

* Introduce `User` hook support.

* The `bold` and `italic` faces are no longer built-in. Highlighters
  are expected to use face attributes (`+b` and `+i`, respectively) to
  decorate text.

* The `lint-enable` command no longer needs to be called to display
  linting errors. The `lint-disable` command was renamed into
  `lint-hide-diagnostics`.

* The `+<length>` part of a `range-specs` highlighter consistently
  refers to the length of the target range.

* clients stdin is transferred to the server, making it possible
  to pipe into `kak -c <session>`

* Faces can have an alpha channel, specified using the
  `rgba:RRGGBBAA` format.

* replace-ranges highlighter now support empty and multi-lines ranges

* `%val{...}` now expands to list of strings, `$kak_quoted_...` now work
  as expected with these.

* `*SetOption` hooks filter string will contain a value only for options
  of int/str/bool types to avoid performance issue with generating those
  on more complex option types.



Index: Makefile
===================================================================
RCS file: /home/reposync/ports/editors/kakoune/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile
--- Makefile    14 Jun 2020 13:07:04 -0000      1.1.1.1
+++ Makefile    7 Aug 2020 08:13:24 -0000
@@ -2,7 +2,7 @@
 
 COMMENT =              modal code editor with a focus on interactivity
 
-V =                    2020.01.16
+V =                    2020.08.04
 DISTNAME =             kakoune-${V}
 
 CATEGORIES =           editors
Index: distinfo
===================================================================
RCS file: /home/reposync/ports/editors/kakoune/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo    14 Jun 2020 13:07:04 -0000      1.1.1.1
+++ distinfo    7 Aug 2020 08:13:31 -0000
@@ -1,2 +1,2 @@
-SHA256 (kakoune-2020.01.16.tar.bz2) = 
oJTxaJ8CKDCPYx43GzgrDAUiOR/ItsI6bLxx/0BKDa4=
-SIZE (kakoune-2020.01.16.tar.bz2) = 478509
+SHA256 (kakoune-2020.08.04.tar.bz2) = 
AkafrB/4MZEWVTb6UvAZB9tb4Kc0vJBXCSSz7buc8SE=
+SIZE (kakoune-2020.08.04.tar.bz2) = 499765
Index: pkg/PLIST
===================================================================
RCS file: /home/reposync/ports/editors/kakoune/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   14 Jun 2020 13:07:04 -0000      1.1.1.1
+++ pkg/PLIST   7 Aug 2020 08:40:46 -0000
@@ -59,9 +59,11 @@ share/kak/rc/filetype/cabal.kak
 share/kak/rc/filetype/clojure.kak
 share/kak/rc/filetype/cmake.kak
 share/kak/rc/filetype/coffee.kak
+share/kak/rc/filetype/coq.kak
 share/kak/rc/filetype/crystal.kak
 share/kak/rc/filetype/css.kak
 share/kak/rc/filetype/cucumber.kak
+share/kak/rc/filetype/cue.kak
 share/kak/rc/filetype/d.kak
 share/kak/rc/filetype/dart.kak
 share/kak/rc/filetype/dhall.kak
@@ -69,6 +71,7 @@ share/kak/rc/filetype/diff.kak
 share/kak/rc/filetype/dockerfile.kak
 share/kak/rc/filetype/elixir.kak
 share/kak/rc/filetype/elm.kak
+share/kak/rc/filetype/eruby.kak
 share/kak/rc/filetype/etc.kak
 share/kak/rc/filetype/exherbo.kak
 share/kak/rc/filetype/fish.kak
@@ -99,6 +102,8 @@ share/kak/rc/filetype/mail.kak
 share/kak/rc/filetype/makefile.kak
 share/kak/rc/filetype/markdown.kak
 share/kak/rc/filetype/mercurial.kak
+share/kak/rc/filetype/meson.kak
+share/kak/rc/filetype/mlb.kak
 share/kak/rc/filetype/moon.kak
 share/kak/rc/filetype/nim.kak
 share/kak/rc/filetype/nix.kak
@@ -119,6 +124,7 @@ share/kak/rc/filetype/scala.kak
 share/kak/rc/filetype/scheme.kak
 share/kak/rc/filetype/scss.kak
 share/kak/rc/filetype/sh.kak
+share/kak/rc/filetype/sml.kak
 share/kak/rc/filetype/sql.kak
 share/kak/rc/filetype/swift.kak
 share/kak/rc/filetype/systemd.kak
@@ -129,6 +135,7 @@ share/kak/rc/filetype/troff.kak
 share/kak/rc/filetype/tupfile.kak
 share/kak/rc/filetype/void-linux.kak
 share/kak/rc/filetype/yaml.kak
+share/kak/rc/filetype/zig.kak
 share/kak/rc/tools/
 share/kak/rc/tools/autorestore.kak
 share/kak/rc/tools/autowrap.kak
@@ -150,10 +157,12 @@ share/kak/rc/tools/rust/
 share/kak/rc/tools/rust/racer.kak
 share/kak/rc/tools/spell.kak
 share/kak/rc/windowing/
+share/kak/rc/windowing/detection.kak
 share/kak/rc/windowing/iterm.kak
 share/kak/rc/windowing/kitty.kak
 share/kak/rc/windowing/new-client.kak
 share/kak/rc/windowing/repl/
+share/kak/rc/windowing/repl/kitty.kak
 share/kak/rc/windowing/repl/tmux.kak
 share/kak/rc/windowing/repl/x11.kak
 share/kak/rc/windowing/screen.kak

Reply via email to