File: control

package info (click to toggle)
vis 0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 12,360 kB
  • sloc: ansic: 22,281; sh: 950; makefile: 356; python: 47
file content (57 lines) | stat: -rw-r--r-- 1,955 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Source: vis
Section: editors
Priority: optional
Maintainer: Paride Legovini <paride@debian.org>
Build-Depends:
 debhelper-compat (= 13),
 libacl1-dev,
 liblua5.3-dev,
 libncursesw5-dev,
 libselinux1-dev [linux-any],
 libtermkey-dev,
 libtermkey1,
 libtre-dev,
 locales-all,
 lua-busted,
 lua-lpeg,
 pkg-config,
 vim [amd64 arm64 ppc64el],
Standards-Version: 4.5.1
Homepage: https://github.com/martanne/vis
Vcs-Git: https://salsa.debian.org/debian/vis.git
Vcs-Browser: https://salsa.debian.org/debian/vis
Rules-Requires-Root: no

Package: vis
Architecture: any
Depends:
 ${misc:Depends},
 ${shlibs:Depends},
Recommends:
 lua-lpeg,
Provides:
 editor,
Description: Modern, legacy free, simple yet efficient vim-like editor
 Vis aims to be a modern, legacy free, simple yet efficient editor
 combining the strengths of both vi(m) and sam. It extends vi's modal
 editing with support for multiple cursors/selections and combines it
 with sam's structural regular expression based command language.
 .
 As an universal editor it has decent Unicode support and should cope
 with arbitrary files including: large, binary or single-line ones.
 Syntax highlighting is provided using Parsing Expression Grammars which
 can be conveniently expressed using Lua in the form of LPeg.
 .
 The editor core is written in a reasonable amount of clean (your mileage
 may vary), modern and legacy free C code, enabling it to run in resource
 constrained environments. The implementation should be easy to hack
 on and encourage experimentation. There also exists a Lua API for
 in-process extensions.
 .
 Vis strives to be simple and focuses on its core task: efficient text
 management. Clipboard and digraph handling as well as a fuzzy file open
 dialog are all provided by independent utilities.
 .
 The intention is not to be bug for bug compatible with vi(m), instead
 the aim is to provide powerful editing features based on an elegant
 design and clean implementation.