Vim: v9.2.0219
Vim AppImage Release v9.2.0219
Version Information:
GVim: v9.2.0219 - Vim git commit: 8e0483c2f - glibc: 2.34
GitHub Actions Logfile
Downloads
This release provides the following Artifacts:
Changelog
- 9.2.0219: call stack can be corrupted
- 9.2.0218: visual selection highlighting in X11 GUI is wrong.
- 9.2.0217: filetype: cto files are not recognized
- 9.2.0216: MS-Windows: Rendering artifacts with DirectX
- 9.2.0215: MS-Windows: several tests fail in the Windows CUI.
- 9.2.0214: tests: Test_gui_system_term_scroll() is flaky
- 9.2.0213: Crash when using a partial or lambda as a clipboard provider
- 9.2.0212: MS-Windows: version packing may overflow
- translation(zh): Update the Simplify Chinese translation
- translation: align sponsor menu string spacing
- 9.2.0211: possible crash when setting 'winhighlight'
- runtime(fish): Add matchit support to filetype plugin
- 9.2.0210: tests: Test_xxd tests are failing
- runtime(doc): Update Italian xxd manpage
- 9.2.0209: freeze during wildmenu completion
- 9.2.0208: MS-Windows: excessive scroll-behaviour with go+=!
- 9.2.0207: MS-Windows: freeze on second :hardcopy
- 9.2.0206: MS-Window: stripping all CSI sequences
- runtime(doc): disable color codes when generating ascii man pages in Makefile
- 9.2.0205: xxd: Cannot NUL terminate the C include file style
- 9.2.0204: filetype: cps files are not recognized
- 9.2.0203: Patch v9.2.0185 was wrong
- 9.2.0202: [security]: command injection via newline in glob()
- 9.2.0201: filetype: Wireguard config files not recognized
- 9.2.0200: term: DECRQM codes are sent too early
- CI: make dependabot monitor `.github/actions` directory
- 9.2.0199: tests: test_startup.vim fails
- 9.2.0198: cscope: can escape from restricted mode
- runtime(doc): Fix typo in if_pyth.txt
- 9.2.0197: tabpanel: frame width not updated for existing tab pages
- runtime(yara): add ftplugin for yara filetype
- 9.2.0196: textprop: negative IDs and can cause a crash
- CI: bump actions/upload-artifact to v7
- 9.2.0195: CI: test-suite gets killed for taking too long
- 9.2.0194: tests: test_startup.vim leaves temp.txt around
- 9.2.0193: using copy_option_part() can be improved
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 22.04 LTS jammy. 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.2.0219/GVim-v9.2.0219.glibc2.34-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.2.0219/Vim-v9.2.0219.glibc2.34-x86_64.AppImage
chmod +x /tmp/vim.appimage
/tmp/vim.appimageThat'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.appimageThen 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 22.04 ("jammy"). 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.soor similar (use the shell commandsudo ldconfig -p | grep libpython3to 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.