Vim AppImage Release v9.1.1039
Version Information:
GVim: v9.1.1039 - Vim git commit: a81cf8b99 - glibc: 2.29
GitHub Actions Logfile
Downloads
This release provides the following Artifacts:
Changelog
- 9.1.1039: Vim9: comments are outdated
- 9.1.1038: tests: test_channel.py fails with IPv6
- runtime(vim): Update base-syntax, fix is/isnot operator matching
- 9.1.1037: Vim9: confusing error when using abstract method via super
- 9.1.1036: make install fails when using shadowdir
- 9.1.1035: Vim9: memory leak with blob2str()
- runtime(tex): add texEmphStyle to texMatchGroup in syntax script
- CI: bump windows python to 3.12
- runtime(netrw): upstream snapshot of v175
- CI: add Linux arm64 CI job
- 9.1.1033: Vim9: compiling abstract method fails without return
- CI: bump windows libsodium to 1.0.20
- runtime(c): add new constexpr keyword to syntax file (C23)
- 9.1.1033: tests: shaderslang was removed from test_filetype erroneously
- 9.1.1032: link error when FEAT_SPELL not defined
- 9.1.1031: Coverity complains about insecure data handling
- runtime(sh): update syntax script
- runtime(c): Add missing syntax test files
- 9.1.1030: filetype: setting bash filetype is backwards incompatible
- runtime(c): Update syntax and ftplugin files
- 9.1.1029: the installer can be improved
- 9.1.1028: too many strlen() calls in screen.c
- 9.1.1027: no sanitize check when running linematch
- 9.1.1026: filetype: swc configuration files are not recognized
- runtime(netrw): change netrw maintainer
- 9.1.1025: wrong return type of blob2str()
What is the Difference between the GVim and the Vim Appimage?
The difference between the GVim and Vim Appimage is, that the GVim version includes a graphical User Interface (GTK3) and other X11 features like clipboard handling. That means, for proper clipboard support, you'll need the GVim Appimage, but you can only run this on a system that has the X11 libraries installed.
For a Server or headless environment, you are probably be better with the Vim version.
Note: The image is based on Ubuntu 20.04 LTS focal. It most likely won't work on older distributions.
Run it
Download the AppImage, make it executable then you can just run it:
wget -O /tmp/gvim.appimage https://github.com/vim/vim-appimage/releases/download/v9.1.1039/GVim-v9.1.1039.glibc2.29-x86_64.AppImage
chmod +x /tmp/gvim.appimage
/tmp/gvim.appimage
# alternatively, download the Vim Appimage
wget -O /tmp/vim.appimage https://github.com/vim/vim-appimage/releases/download/v9.1.1039/Vim-v9.1.1039.glibc2.29-x86_64.AppImage
chmod +x /tmp/vim.appimage
/tmp/vim.appimage
That's all, you should have a graphical vim now running (if you have a graphical system running) 😄
If you want a terminal Vim (with X11 and clipboard feature enabled), just create a symbolic link with a name starting with "vim". Like:
ln -s /tmp/gvim.appimage /tmp/vim.appimage
Then execute vim.appimage
to get a terminal Vim.
Interpreter interfaces
The Vim / GVim AppImage's are compiled with Vim interfaces for Perl 5.30, Python 3.8+, Ruby 2.7, and Lua 5.3 and built on Ubuntu 20.04 ("focal"). If your system runs this exact version of Ubuntu (or some compatible flavor), and has the corresponding interpreter packages installed, they will work just as in a native Vim distro package.
Otherwise,
- for Python 3: install it on your system. In Vim,
set pythonthreedll=libpython3.10.so
or similar (use the shell commandsudo ldconfig -p | grep libpython3
to find the library name). See:help +python3/dyn-stable
. - for any interpreter other than Python: the appimage embeds a version of its runtime. The Vim interface will work (see e.g.
:help lua
,:help perl
,:help ruby
), however it won't have access to the default / base modules (with various effects for each interpreter). Any interpreter modules (base and add-ons) installed on your system will be ignored and are most likely not compatible with the runtime version embedded in the AppImage.