It seems that new features came lately, like word completion in insert mode with <C-n>, or vis-menu, a tiny C program replacing slmenu that was needed.
I miss the lack of buffer management, like :ls, :buffers, :bn, :bp, in vim. But I guess it will come some day, as there is a client-server design planned.
What I wonder is if I can make it very portable, as in a binary for vis and all its dependency, like lua interpreter, and the lexers/theme/preferences files. As binary packages for vis are not as frequent as for vim, I may encounter systems where there is no compiler and no make, and no lua.
Fortunately, vis has some make standalone grabbing all its dependency, building a statically linked binary. But I think I still need lua.
How did the author not know there is already a command named
vis(1)
that is probably installed on every Unix-like OS?CLI-centric culture incentivizes a run on short names. We’re bound to run out soon.
Apparently not usually installed on linux? Also not to be confused with VIS. :)
Not on most Linux distributions.
Never heard of it.
Debian testing (stretch)
“Here’s a nickel kid…”
“The vis command appeared in 4.4BSD.” - vis(1)
This editor is really the piece of software I wished to see happen. I may contribute as soon as I know C enough.
Lua may do a much better job than VimL. And the multiple cursor feature integrated with
sam
’s structural regex is really exciting.I’ve started using Vis before it was cool, questions are welcome ;)
It seems that new features came lately, like word completion in insert mode with <C-n>, or vis-menu, a tiny C program replacing
slmenu
that was needed.I miss the lack of buffer management, like
:ls
,:buffers
,:bn
,:bp
, in vim. But I guess it will come some day, as there is a client-server design planned.What I wonder is if I can make it very portable, as in a binary for
vis
and all its dependency, like lua interpreter, and the lexers/theme/preferences files. As binary packages for vis are not as frequent as for vim, I may encounter systems where there is no compiler and no make, and no lua.Fortunately, vis has some
make standalone
grabbing all its dependency, building a statically linked binary. But I think I still need lua.