5 Star 26 Fork 0

Gitee 极速下载/neovim

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
cmake.config
cmake.deps
cmake.packaging
cmake
ConvertPo.cmake
Deps.cmake
Find.cmake
FindIconv.cmake
FindLibintl.cmake
FindLibuv.cmake
FindLpeg.cmake
FindLuajit.cmake
FindLuv.cmake
FindTreesitter.cmake
FindUTF8proc.cmake
FindUnibilium.cmake
FindWasmtime.cmake
GenerateVersion.cmake
InstallHelpers.cmake
PreventInTreeBuilds.cmake
RunTests.cmake
UninstallHelper.cmake
Util.cmake
WindowsDllCopy.cmake
contrib
deps
runtime
scripts
src
test
.cirrus.yml
.clang-format
.clang-tidy
.clangd
.editorconfig
.emmyrc.json
.git-blame-ignore-revs
.gitattributes
.gitignore
.luacheckrc
.luacov
.luarc.json
.mailmap
.stylua.toml
.stylua2.toml
.styluaignore
BSDmakefile
BUILD.md
CMakeLists.txt
CMakePresets.json
CONTRIBUTING.md
INSTALL.md
LICENSE.txt
MAINTAIN.md
Makefile
README.md
build.zig
build.zig.zon
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/neovim/neovim
克隆/下载
UninstallHelper.cmake 510 Bytes
一键复制 编辑 原始数据 按行查看 历史
if(NOT EXISTS "${CMAKE_BINARY_DIR}/install_manifest.txt")
message(FATAL_ERROR "Cannot find install manifest: ${CMAKE_BINARY_DIR}/install_manifest.txt")
endif()
file(STRINGS "${CMAKE_BINARY_DIR}/install_manifest.txt" files)
foreach(file ${files})
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
file(REMOVE $ENV{DESTDIR}${file})
else()
message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
endif()
endforeach()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/neovim.git
git@gitee.com:mirrors/neovim.git
mirrors
neovim
neovim
master

搜索帮助